Continueed playing around with the buildsystem.
[aesalon.git] / include / visualizer / MainWindow.h
blob143157e45a08f331bed8559659c6def866d480cc
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/MainWindow.h
12 #include <QMainWindow>
14 #ifndef AesalonVisualizer_MainWindow_H
15 #define AesalonVisualizer_MainWindow_H
17 namespace Visualizer {
19 class MainWindow : public QMainWindow { Q_OBJECT
20 public:
21 MainWindow();
22 virtual ~MainWindow();
23 private:
24 void setupMenus();
27 } // namespace Visualizer
29 #endif