Began implementing scons buildsystem for the visualizer.
[aesalon.git] / include / visualizer / DisplayWindow.h
blob0f4b871418840065dc59f2253d8eb726fcb09dc8
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//DisplayWindow.h
12 #ifndef AesalonVisualizer_DisplayWindow_H
13 #define AesalonVisualizer_DisplayWindow_H
15 #include <QObject>
17 namespace Visualizer {
19 class DisplayWindow : public QObject { Q_OBJECT
20 public:
21 DisplayWindow();
22 virtual ~DisplayWindow();
25 } // namespace Visualizer
27 #endif