diff options
author | Eddie Hung <eddieh@ece.ubc.ca> | 2018-08-04 18:40:37 -0700 |
---|---|---|
committer | Eddie Hung <eddieh@ece.ubc.ca> | 2018-08-04 18:40:37 -0700 |
commit | aebb39c65125573386165dee3afbb93d6a18241e (patch) | |
tree | 626f0ee4c250c9b4dd0615b5ea3eb01773ed8ea7 /gui/basewindow.h | |
parent | dced12cbd2355604279c7277c8a48f584771dfb8 (diff) | |
parent | 7d5dba3ad378563869657b4330c178ecd8c24931 (diff) | |
download | nextpnr-aebb39c65125573386165dee3afbb93d6a18241e.tar.gz nextpnr-aebb39c65125573386165dee3afbb93d6a18241e.tar.bz2 nextpnr-aebb39c65125573386165dee3afbb93d6a18241e.zip |
Merge branch 'master' into slack_histogram
Diffstat (limited to 'gui/basewindow.h')
-rw-r--r-- | gui/basewindow.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gui/basewindow.h b/gui/basewindow.h index 5cec24c5..341cc8e2 100644 --- a/gui/basewindow.h +++ b/gui/basewindow.h @@ -45,7 +45,7 @@ class BaseMainWindow : public QMainWindow Q_OBJECT
public:
- explicit BaseMainWindow(std::unique_ptr<Context> context, QWidget *parent = 0);
+ explicit BaseMainWindow(std::unique_ptr<Context> context, ArchArgs args, QWidget *parent = 0);
virtual ~BaseMainWindow();
Context *getContext() { return ctx.get(); }
@@ -88,6 +88,7 @@ class BaseMainWindow : public QMainWindow protected:
// state variables
+ ArchArgs chipArgs;
std::unique_ptr<Context> ctx;
TaskManager *task;
bool timing_driven;
|