-#ifndef __GTS_SETTINGS_INL_H__
-#define __GTS_SETTINGS_INL_H__
+#ifndef __SSMD_SETTINGS_INL_H__
+#define __SSMD_SETTINGS_INL_H__
#include <iostream>
#include <sstream>
-namespace GTS {
+namespace SSMD {
inline
Settings::Settings()
_upProfileId(1),
_downProfileId(2),
_maxACLPerPDU(50),
- _dataURL()
+ _dumpScripts(false)
{
}
_upProfileId(rvalue._upProfileId),
_downProfileId(rvalue._downProfileId),
_maxACLPerPDU(rvalue._maxACLPerPDU),
- _dataURL(rvalue._dataURL)
+ _dataURL(rvalue._dataURL),
+ _scriptBase(rvalue._scriptBase),
+ _dumpScripts(rvalue._dumpScripts)
{
}
}
inline
-const Settings & Settings::operator=(const Settings & rvalue)
+Settings & Settings::operator=(const Settings & rvalue)
{
_isHelp = rvalue._isHelp;
_isVersion = rvalue._isVersion;
_downProfileId = rvalue._downProfileId;
_maxACLPerPDU = rvalue._maxACLPerPDU;
_dataURL = rvalue._dataURL;
+ _scriptBase = rvalue._scriptBase;
+ _dumpScripts = rvalue._dumpScripts;
return *this;
}