]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Plugins/BasicFilters/Cutter.h
52438a723b4fe7ee750984889ceeb16eee58a937
[cpPlugins.git] / lib / cpPlugins / Plugins / BasicFilters / Cutter.h
1 #ifndef __CPPLUGINS__PLUGINS__CUTTER__H__
2 #define __CPPLUGINS__PLUGINS__CUTTER__H__
3
4 #include <cpPlugins/BasicFilters/cpPluginsBasicFilters_Export.h>
5 #include <cpPlugins/Interface/BaseProcessObjects.h>
6
7 namespace cpPlugins
8 {
9   namespace BasicFilters
10   {
11     /**
12      */
13     class cpPluginsBasicFilters_EXPORT Cutter
14       : public cpPlugins::Interface::MeshToMeshFilter
15     {
16     public:
17       typedef Cutter                                 Self;
18       typedef cpPlugins::Interface::MeshToMeshFilter Superclass;
19       typedef itk::SmartPointer< Self >              Pointer;
20       typedef itk::SmartPointer< const Self >        ConstPointer;
21
22     public:
23       itkNewMacro( Self );
24       itkTypeMacro( Cutter, cpPluginsInterfaceMeshToMeshFilter );
25
26     protected:
27       Cutter( );
28       virtual ~Cutter( );
29
30       virtual std::string _GenerateData( );
31
32     private:
33       // Purposely not implemented
34       Cutter( const Self& );
35       Self& operator=( const Self& );
36     };
37
38     // ---------------------------------------------------------------------
39     CPPLUGINS_INHERIT_PROVIDER( Cutter );
40
41   } // ecapseman
42
43 } // ecapseman
44
45 #endif // __CPPLUGINS__PLUGINS__CUTTER__H__
46
47 // eof - $RCSfile$