]> Creatis software - FrontAlgorithms.git/blob - lib/fpaPlugins/GrowFunction.h
cca92ab107c55ed69ec65ec438d067d1784c8ccd
[FrontAlgorithms.git] / lib / fpaPlugins / GrowFunction.h
1 #ifndef __FPAPLUGINS__GROWFUNCTION__H__
2 #define __FPAPLUGINS__GROWFUNCTION__H__
3
4 #include <fpaPlugins/fpaPlugins_Export.h>
5 #include <cpPlugins/Interface/DataObject.h>
6
7 #include <itkProcessObject.h>
8
9 // -------------------------------------------------------------------------
10 namespace fpaPlugins
11 {
12   /**
13    */
14   class fpaPlugins_EXPORT GrowFunction
15     : public cpPlugins::Interface::DataObject
16   {
17   public:
18     typedef GrowFunction                     Self;
19     typedef cpPlugins::Interface::DataObject Superclass;
20     typedef itk::SmartPointer< Self >        Pointer;
21     typedef itk::SmartPointer< const Self >  ConstPointer;
22
23   public:
24     itkNewMacro( Self );
25     itkTypeMacro( GrowFunction, cpPlugins::Interface::DataObject );
26     cpPlugins_Id_Macro( GrowFunction, GrowFunction );
27
28   public:
29     template< class F >
30       inline void SetITK( itk::Object* object );
31
32   protected:
33     GrowFunction( );
34     virtual ~GrowFunction( );
35
36   private:
37     // Purposely not implemented
38     GrowFunction( const Self& );
39     Self& operator=( const Self& );
40   };
41
42 } // ecapseman
43
44 #include <fpaPlugins/GrowFunction.hxx>
45
46 #endif // __FPAPLUGINS__GROWFUNCTION__H__
47
48 // eof - $RCSfile$