diff options
Diffstat (limited to 'lsmainwindow.h')
-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 |