diff options
author | David Shah <davey1576@gmail.com> | 2018-06-26 14:22:47 +0200 |
---|---|---|
committer | David Shah <davey1576@gmail.com> | 2018-06-26 14:22:47 +0200 |
commit | 2073403f41daa8d6f9d44e65dd70cd6308aaf2e6 (patch) | |
tree | 0510ef808123296754fedc76172d3bb9e1261692 /gui/basewindow.h | |
parent | 962c566ffb6aa37ea1eb2e3bd8355feb73308ca4 (diff) | |
parent | 8344a21282ca63be467ae9c11e0f4dd000fff84c (diff) | |
download | nextpnr-2073403f41daa8d6f9d44e65dd70cd6308aaf2e6.tar.gz nextpnr-2073403f41daa8d6f9d44e65dd70cd6308aaf2e6.tar.bz2 nextpnr-2073403f41daa8d6f9d44e65dd70cd6308aaf2e6.zip |
Merge branch 'master' of gitlab.com:SymbioticEDA/nextpnr
Diffstat (limited to 'gui/basewindow.h')
-rw-r--r-- | gui/basewindow.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gui/basewindow.h b/gui/basewindow.h index f4ca5129..038b82c5 100644 --- a/gui/basewindow.h +++ b/gui/basewindow.h @@ -49,8 +49,9 @@ class BaseMainWindow : public QMainWindow protected Q_SLOTS:
void writeInfo(std::string text);
- virtual void open() = 0;
- virtual bool save() = 0;
+ virtual void new_proj() = 0;
+ virtual void open_proj() = 0;
+ virtual bool save_proj() = 0;
protected:
Context *ctx;
|