]> git.sur5r.net Git - fstl/blob - src/window.h
Mostly complete from the Python original
[fstl] / src / window.h
1 #ifndef WINDOW_H
2 #define WINDOW_H
3
4 #include <QMainWindow>
5
6 class Canvas;
7
8 class Window : public QMainWindow
9 {
10     Q_OBJECT
11 public:
12     explicit Window(QWidget* parent=0);
13     void load_stl(const QString& filename);
14
15 private:
16     Canvas* canvas;
17 };
18
19 #endif // WINDOW_H