summaryrefslogtreecommitdiff
path: root/project2/common/environment.h
diff options
context:
space:
mode:
Diffstat (limited to 'project2/common/environment.h')
-rw-r--r--project2/common/environment.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/project2/common/environment.h b/project2/common/environment.h
index 6185178..c2b9474 100644
--- a/project2/common/environment.h
+++ b/project2/common/environment.h
@@ -7,6 +7,7 @@
#include <boost/filesystem/path.hpp>
#include "options.h"
#include "exceptions.h"
+#include "scripts.h"
SimpleMessageException(NoSuchPlatform);
@@ -26,7 +27,7 @@ class Environment {
virtual std::string getScriptName() const = 0;
virtual const Glib::ustring & platform() const = 0;
- boost::filesystem::path resolveScript(const std::string & group, const std::string & name) const;
+ ScriptReaderPtr resolveScript(const std::string & group, const std::string & name, bool ii) const;
private:
Options commonOptions;