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/ice40/worker.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/ice40/worker.h')
-rw-r--r-- | gui/ice40/worker.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gui/ice40/worker.h b/gui/ice40/worker.h index 2995a851..18f4b2c2 100644 --- a/gui/ice40/worker.h +++ b/gui/ice40/worker.h @@ -36,6 +36,7 @@ class Worker : public QObject public Q_SLOTS: void loadfile(const std::string &); void loadpcf(const std::string &); + void saveasc(const std::string &); void pack(); void budget(double freq); void place(bool timing_driven); @@ -44,6 +45,7 @@ class Worker : public QObject void log(const std::string &text); void loadfile_finished(bool status); void loadpcf_finished(bool status); + void saveasc_finished(bool status); void pack_finished(bool status); void budget_finish(bool status); void place_finished(bool status); @@ -76,6 +78,7 @@ class TaskManager : public QObject void terminate(); void loadfile(const std::string &); void loadpcf(const std::string &); + void saveasc(const std::string &); void pack(); void budget(double freq); void place(bool timing_driven); @@ -85,6 +88,7 @@ class TaskManager : public QObject void log(const std::string &text); void loadfile_finished(bool status); void loadpcf_finished(bool status); + void saveasc_finished(bool status); void pack_finished(bool status); void budget_finish(bool status); void place_finished(bool status); |