]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Plugins/Widgets/SeedWidget.h
MAC compilation issues solved... Now some tests please
[cpPlugins.git] / lib / cpPlugins / Plugins / Widgets / SeedWidget.h
1 #ifndef __CPPLUGINS__PLUGINS__SEEDWIDGET__H__
2 #define __CPPLUGINS__PLUGINS__SEEDWIDGET__H__
3
4 #include <cpPlugins/Widgets/cpPluginsWidgets_Export.h>
5 #include <cpPlugins/Interface/ProcessObject.h>
6
7 namespace cpPlugins
8 {
9   namespace Widgets
10   {
11     /**
12      */
13     class cpPluginsWidgets_EXPORT SeedWidget
14       : public cpPlugins::Interface::ProcessObject
15     {
16     public:
17       typedef SeedWidget                          Self;
18       typedef cpPlugins::Interface::ProcessObject Superclass;
19       typedef itk::SmartPointer< Self >           Pointer;
20       typedef itk::SmartPointer< const Self >     ConstPointer;
21
22     public:
23       itkNewMacro( Self );
24       itkTypeMacro( SeedWidget, cpPlugins::Interface::ProcessObject );
25       cpPlugins_Id_Macro( cpPlugins::Widgets::SeedWidget, Widgets );
26
27     public:
28       virtual itk::ModifiedTimeType GetMTime( ) const;
29
30     protected:
31       SeedWidget( );
32       virtual ~SeedWidget( );
33
34       virtual std::string _GenerateData( );
35
36       template< class I >
37         inline std::string _GD0( itk::DataObject* image );
38
39     private:
40       // Purposely not implemented
41       SeedWidget( const Self& );
42       Self& operator=( const Self& );
43
44     protected:
45       bool m_Configured;
46     };
47
48   } // ecapseman
49
50 } // ecapseman
51
52 #endif // __CPPLUGINS__PLUGINS__SEEDWIDGET__H__
53
54 // eof - $RCSfile$