aboutsummaryrefslogtreecommitdiffstats
path: root/common/command.h
diff options
context:
space:
mode:
Diffstat (limited to 'common/command.h')
-rw-r--r--common/command.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/common/command.h b/common/command.h
index 5c5ceb9a..c7b58517 100644
--- a/common/command.h
+++ b/common/command.h
@@ -22,6 +22,7 @@
#define COMMAND_H
#include <boost/program_options.hpp>
+#include <fstream>
#include "nextpnr.h"
#include "settings.h"
@@ -36,6 +37,7 @@ class CommandHandler
virtual ~CommandHandler(){};
int exec();
+ std::unique_ptr<Context> load_json(std::string filename);
protected:
virtual void setupArchContext(Context *ctx) = 0;
@@ -57,7 +59,6 @@ class CommandHandler
protected:
po::variables_map vm;
- ArchArgs chipArgs;
std::unique_ptr<Settings> settings;
private: