aboutsummaryrefslogtreecommitdiffstats
path: root/gui/ice40/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/ice40/mainwindow.h')
-rw-r--r--gui/ice40/mainwindow.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/gui/ice40/mainwindow.h b/gui/ice40/mainwindow.h
index e9c8ff77..fd65f9ae 100644
--- a/gui/ice40/mainwindow.h
+++ b/gui/ice40/mainwindow.h
@@ -2,6 +2,7 @@
#define MAINWINDOW_H
#include "../basewindow.h"
+#include "worker.h"
// FIXME
USING_NEXTPNR_NAMESPACE
@@ -12,10 +13,17 @@ class MainWindow : public BaseMainWindow
public:
explicit MainWindow(Context *ctx, QWidget *parent = 0);
- ~MainWindow();
+ virtual ~MainWindow();
public:
void createMenu();
+
+ protected Q_SLOTS:
+ virtual void open();
+ virtual bool save();
+
+ private:
+ TaskManager *task;
};
#endif // MAINWINDOW_H