#include "stg/settings.h"
#include "stg/common.h"
-#include "stg/stg_logger.h"
+#include "stg/logger.h"
#include "stg/module_settings.h"
//-----------------------------------------------------------------------------
const std::string & GetMonitorDir() const { return monitorDir; }
bool GetMonitoring() const { return monitoring; }
unsigned GetMessageTimeout() const { return messageTimeout * 3600 * 24; }
+ unsigned GetFeeChargeType() const { return feeChargeType; }
+ bool GetReconnectOnTariffChange() const { return reconnectOnTariffChange; }
const std::string & GetModulesPath() const { return modulesPath; }
const MODULE_SETTINGS & GetStoreModuleSettings() const
bool writeFreeMbTraffCost;
bool showFeeInCash;
unsigned messageTimeout;
+ unsigned feeChargeType;
+ bool reconnectOnTariffChange;
std::vector<MODULE_SETTINGS> modulesSettings;
MODULE_SETTINGS storeModuleSettings;