Began refactoring the entire source tree.
[aesalon.git] / include / visualizer / visualization / Viewport.h
blob956e115d6dd879fb5c333b325e89e0eda61820df
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/Viewport.h
12 #include <QMdiSubWindow>
14 #ifndef AesalonVisualizer_Visualization_Viewport_H
15 #define AesalonVisualizer_Visualization_Viewport_H
17 namespace Visualizer {
18 namespace Visualization {
20 class Viewport : public QMdiSubWindow { Q_OBJECT
21 public:
22 Viewport();
23 ~Viewport();
26 } // namespace Visualization
27 } // namespace Visualizer
29 #endif