]> Creatis software - cpPlugins.git/blob - lib/cpPlugins/Plugins/Widgets/SeedWidget.h
...
[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     protected:
28       SeedWidget( );
29       virtual ~SeedWidget( );
30
31       virtual std::string _GenerateData( );
32
33       template< class I >
34         inline std::string _GD0( itk::DataObject* image );
35
36     private:
37       // Purposely not implemented
38       SeedWidget( const Self& );
39       Self& operator=( const Self& );
40
41     protected:
42       bool m_Configured;
43     };
44
45     // ---------------------------------------------------------------------
46     CPPLUGINS_INHERIT_PROVIDER( SeedWidget );
47
48   } // ecapseman
49
50 } // ecapseman
51
52 #endif // __CPPLUGINS__PLUGINS__SEEDWIDGET__H__
53
54 // eof - $RCSfile$