]> Creatis software - FrontAlgorithms.git/blob - lib/fpaPlugins/GrowFunction.h
...
[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     virtual void SetVTK( vtkObjectBase* o );
30
31   protected:
32     GrowFunction( );
33     virtual ~GrowFunction( );
34
35   private:
36     // Purposely not implemented
37     GrowFunction( const Self& );
38     Self& operator=( const Self& );
39   };
40
41 } // ecapseman
42
43 #include <fpaPlugins/GrowFunction.hxx>
44
45 #endif // __FPAPLUGINS__GROWFUNCTION__H__
46
47 // eof - $RCSfile$