summaryrefslogtreecommitdiffstats
path: root/api/logic/Env.h
diff options
context:
space:
mode:
Diffstat (limited to 'api/logic/Env.h')
-rw-r--r--api/logic/Env.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/api/logic/Env.h b/api/logic/Env.h
index 4d9ec139..8b9b827e 100644
--- a/api/logic/Env.h
+++ b/api/logic/Env.h
@@ -54,6 +54,12 @@ public:
QString getJarsPath();
void setJarsPath(const QString & path);
+
+ bool isFeatureEnabled(const QString & featureName) const;
+ void enableFeature(const QString & featureName, bool state = true);
+ void getEnabledFeatures(QSet<QString> & features) const;
+ void setEnabledFeatures(const QSet<QString> & features) const;
+
protected:
Private * d;
};