const std::string & dataURL() const throw() { return _dataURL; }
+ const std::string & scriptBase() const throw() { return _scriptBase; }
+ bool dumpScripts() const throw() { return _dumpScripts; }
+
// Setters
void setIsHelp(bool value) throw() { _isHelp = value; }
void setIsVersion(bool value) throw() { _isVersion = value; }
std::string _dataURL;
+ std::string _scriptBase;
+ bool _dumpScripts;
+
friend class SettingsParser;
};