diff options
author | Treeki <treeki@gmail.com> | 2010-10-07 15:56:13 +0200 |
---|---|---|
committer | Treeki <treeki@gmail.com> | 2010-10-07 15:56:13 +0200 |
commit | 5f6dad55d75cbe146ff7fefc899a02ccd39078ba (patch) | |
tree | 0822df14cc6d2c0329810c9ae7b4a4a638fe82b1 /lsmainwindow.h | |
download | LayoutStudio-5f6dad55d75cbe146ff7fefc899a02ccd39078ba.tar.gz LayoutStudio-5f6dad55d75cbe146ff7fefc899a02ccd39078ba.zip |
initial commit -- everything compiles except for material.cpp. the material system still needs quite a bit of work; this will come in due time
Diffstat (limited to '')
-rw-r--r-- | lsmainwindow.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lsmainwindow.h b/lsmainwindow.h new file mode 100644 index 0000000..6f1a000 --- /dev/null +++ b/lsmainwindow.h @@ -0,0 +1,18 @@ +#ifndef LSMAINWINDOW_H +#define LSMAINWINDOW_H + +#include "ui_lsmainwindow.h" + +class LSMainWindow : public QMainWindow { + Q_OBJECT +public: + LSMainWindow(QWidget *parent = 0); + +protected: + void changeEvent(QEvent *e); + +private: + Ui::LSMainWindow ui; +}; + +#endif // LSMAINWINDOW_H |