diff options
author | Clifford Wolf <clifford@clifford.at> | 2018-06-21 15:47:54 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2018-06-21 15:47:54 +0200 |
commit | 417e67938c12be20a1c314d42386ede0ad8993a7 (patch) | |
tree | df36dd3aad9296a5d47bbb9c397bfb2175b51124 /gui/dummy/mainwindow.h | |
parent | a29bfc788eba9f11f1e0cd3d62a32c3894cddf49 (diff) | |
parent | 097df1869d654b1214b925fe991aa09d2ef5b3cd (diff) | |
download | nextpnr-417e67938c12be20a1c314d42386ede0ad8993a7.tar.gz nextpnr-417e67938c12be20a1c314d42386ede0ad8993a7.tar.bz2 nextpnr-417e67938c12be20a1c314d42386ede0ad8993a7.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
Diffstat (limited to 'gui/dummy/mainwindow.h')
-rw-r--r-- | gui/dummy/mainwindow.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/gui/dummy/mainwindow.h b/gui/dummy/mainwindow.h index e9c8ff77..ea4480fb 100644 --- a/gui/dummy/mainwindow.h +++ b/gui/dummy/mainwindow.h @@ -12,10 +12,14 @@ 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();
};
#endif // MAINWINDOW_H
|