X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/a3c9db8d7d653af9ef42198452c50c7dc648f0d1..4b6cb30ae7c85d6ca9d2defb4e6d8f5cae309eeb:/projects/stargazer/settings_impl.h?ds=inline diff --git a/projects/stargazer/settings_impl.h b/projects/stargazer/settings_impl.h index 739bbcc9..f35eda0d 100644 --- a/projects/stargazer/settings_impl.h +++ b/projects/stargazer/settings_impl.h @@ -58,7 +58,6 @@ class DOTCONFDocumentNode; //----------------------------------------------------------------------------- class SETTINGS_IMPL : public SETTINGS { public: - SETTINGS_IMPL(); SETTINGS_IMPL(const std::string &); SETTINGS_IMPL(const SETTINGS_IMPL &); virtual ~SETTINGS_IMPL() {} @@ -85,7 +84,7 @@ public: bool GetFreeMbAllowInet() const { return freeMbAllowInet; } bool GetDayFeeIsLastDay() const { return dayFeeIsLastDay; } bool GetWriteFreeMbTraffCost() const - { return writeFreeMbTraffCost; }; + { return writeFreeMbTraffCost; } bool GetShowFeeInCash() const { return showFeeInCash; } const std::string & GetMonitorDir() const { return monitorDir; } bool GetMonitoring() const { return monitoring; } @@ -98,6 +97,7 @@ public: { return storeModuleSettings; } const std::vector & GetModulesSettings() const { return modulesSettings; } + const std::vector & GetScriptParams() const { return scriptParams; } private: @@ -117,6 +117,7 @@ private: std::string logFile; std::string pidFile; std::string monitorDir; + std::vector scriptParams; bool monitoring; unsigned detailStatWritePeriod; unsigned statWritePeriod; @@ -127,6 +128,7 @@ private: unsigned dayResetTraff; bool spreadFee; bool freeMbAllowInet; + bool stopOnError; bool dayFeeIsLastDay; bool writeFreeMbTraffCost; bool showFeeInCash; @@ -136,7 +138,6 @@ private: std::vector modulesSettings; MODULE_SETTINGS storeModuleSettings; - STG_LOGGER & logger; }; //-----------------------------------------------------------------------------