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