-#ifndef __GTS_SETTINGS_H__
-#define __GTS_SETTINGS_H__
+#ifndef __SSMD_SETTINGS_H__
+#define __SSMD_SETTINGS_H__
#include <string>
namespace po = boost::program_options;
-namespace GTS {
+namespace SSMD {
class SettingsParser;
class Settings {
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;
};