]> git.sesse.net Git - nageru/blob - window.h
Rework entire pts handling.
[nageru] / window.h
1 #ifndef WINDOW_H
2 #define WINDOW_H
3
4 #include <QWidget>
5
6 class GLWidget;
7 class MainWindow;
8
9 class Window : public QWidget
10 {
11         Q_OBJECT
12
13 public:
14         Window(MainWindow *mw);
15
16 private:
17         GLWidget *gl_widget;
18         MainWindow *main_window;
19 };
20
21 #endif