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