One possible system for rendering . . .
[aesalon.git] / include / visualizer / visualization / RenderWidget.h
blob4ab636b980a05c539b9a2f34cc001bb7cf6306f1
1 /**
2 Aesalon, a tool to visualize a program's behaviour at run-time.
3 Copyright (C) 2010, Aesalon Development Team.
5 Aesalon is distributed under the terms of the GNU GPLv3. For more
6 licensing information, see the file LICENSE included with the distribution.
8 @file include/visualizer/visualization/RenderWidget.h
12 #ifndef AesalonVisualizer_Visualization_RenderWidget_H
13 #define AesalonVisualizer_Visualization_RenderWidget_H
15 #include <QObject>
16 #include <QWidget>
18 #include <QGraphicsView>
20 namespace Visualizer {
21 namespace Visualization {
23 class RenderWidget : public QWidget { Q_OBJECT
24 private:
25 QGraphicsView *m_view;
26 public:
27 RenderWidget();
28 virtual ~RenderWidget();
29 private:
33 } // namespace Visualization
34 } // namespace Visualizer
36 #endif