aboutsummaryrefslogtreecommitdiffstats
path: root/gui/dummy/mainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'gui/dummy/mainwindow.h')
-rw-r--r--gui/dummy/mainwindow.h26
1 files changed, 26 insertions, 0 deletions
diff --git a/gui/dummy/mainwindow.h b/gui/dummy/mainwindow.h
new file mode 100644
index 00000000..c2786906
--- /dev/null
+++ b/gui/dummy/mainwindow.h
@@ -0,0 +1,26 @@
+#ifndef MAINWINDOW_H
+#define MAINWINDOW_H
+
+#include "../basewindow.h"
+
+NEXTPNR_NAMESPACE_BEGIN
+
+class MainWindow : public BaseMainWindow
+{
+ Q_OBJECT
+
+ public:
+ explicit MainWindow(Context *ctx, QWidget *parent = 0);
+ virtual ~MainWindow();
+
+ public:
+ void createMenu();
+
+ protected Q_SLOTS:
+ virtual void open();
+ virtual bool save();
+};
+
+NEXTPNR_NAMESPACE_END
+
+#endif // MAINWINDOW_H