]> Creatis software - cpPlugins.git/blob - libs/cpPipelineEditor/Panel.h
...
[cpPlugins.git] / libs / cpPipelineEditor / Panel.h
1 // -------------------------------------------------------------------------
2 // @author Leonardo Florez-Valencia (florez-l@javeriana.edu.co)
3 // -------------------------------------------------------------------------
4
5 #ifndef __cpPipelineEditor__Panel__h__
6 #define __cpPipelineEditor__Panel__h__
7
8 #include <cpPipelineEditor_Export.h>
9 #include <QTreeWidget>
10
11 namespace cpPipelineEditor
12 {
13   /**
14    */
15   class Panel
16     : public QTreeWidget
17   {
18     Q_OBJECT;
19
20   public:
21     typedef Panel       Self;
22     typedef QTreeWidget Superclass;
23
24   public:
25     Panel( QWidget* parent = NULL );
26     virtual ~Panel( );
27
28   protected:
29     void _clear( );
30     void _update( );
31   };
32
33 } // ecapseman
34
35 #endif // __cpPipelineEditor__Panel__h__
36
37 // eof - $RCSfile$