]> Creatis software - cpPlugins.git/blob - appli/PipelineEditor/PipelineEditor.h
yet another refactoring
[cpPlugins.git] / appli / PipelineEditor / PipelineEditor.h
1 #ifndef __PipelineEditor__h__
2 #define __PipelineEditor__h__
3
4 #include <QMainWindow>
5 #include <cpBaseQtApplication/MainWindow.h>
6
7 namespace Ui { class PipelineEditor; }
8
9 /**
10  */
11 class PipelineEditor
12   : public cpBaseQtApplication::MainWindow
13 {
14   Q_OBJECT;
15 public:
16   typedef PipelineEditor                  Self;
17   typedef cpBaseQtApplication::MainWindow Superclass;
18
19 public:
20   explicit PipelineEditor(
21     int argc, char* argv[],
22     QWidget* parent = NULL
23     );
24   virtual ~PipelineEditor( );
25
26 protected slots:
27   void _slotView( const std::string& name, bool show );
28   void _slotPrintExecutionInformation( bool show );
29
30 private:
31   Ui::PipelineEditor* m_UI;
32 };
33
34 #endif // __PipelineEditor__h__
35
36 // eof - $RCSfile$