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.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/project2/common/environment.h b/project2/common/environment.h
index 7b5e976..7289bb0 100644
--- a/project2/common/environment.h
+++ b/project2/common/environment.h
@@ -3,7 +3,6 @@
#include <string>
#include <glibmm/ustring.h>
-#include <boost/tuple/tuple.hpp>
#include "options.h"
#include "exceptions.h"
#include "scripts.h"
@@ -22,16 +21,10 @@ class Environment {
virtual std::string getServerName() const = 0;
virtual const Glib::ustring & platform() const = 0;
- ScriptReaderPtr resolveScript(const std::string & group, const std::string & name, bool ii) const;
-
INITOPTIONS;
private:
static const Environment * currentEnv;
- typedef boost::tuple<const std::string, const std::string> ScriptKey;
- typedef std::map<ScriptKey, ScriptReaderPtr> ScriptCache;
- mutable ScriptCache scriptCache;
-
public:
static std::string datasourceRoot;
static std::string scriptNamespace;