diff options
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r-- | src/mainwindow.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h index eeaaa1a..1376a84 100644 --- a/src/mainwindow.h +++ b/src/mainwindow.h @@ -29,14 +29,23 @@ #define __KAIMAN_MAINWINDOW_H__ #include <QWidget> + +#include <QFileSystemWatcher> + #include "outputwindow.h" #include "luascript.h" class MainWindow : public QWidget { +Q_OBJECT public: MainWindow(QString program); +private slots: + void reset(); + private: + QFileSystemWatcher watcher; + QString program; OutputWindow *out; LUAScript *l; }; |