From: Maxim Mamontov Date: Mon, 4 Apr 2011 13:04:45 +0000 (+0300) Subject: Create TRAFFCOUNTER_IMPL in main.cpp X-Git-Tag: 2.407-rc3~108 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/1825b28b15bba685a406e45f06b2ff7c9147466a Create TRAFFCOUNTER_IMPL in main.cpp --- diff --git a/projects/stargazer/main.cpp b/projects/stargazer/main.cpp index 2c789ff6..26176bfc 100644 --- a/projects/stargazer/main.cpp +++ b/projects/stargazer/main.cpp @@ -50,7 +50,7 @@ #include "admins_impl.h" #include "tariffs_impl.h" #include "common.h" -#include "traffcounter.h" +#include "traffcounter_impl.h" #include "plugin.h" #include "stg_logger.h" #include "stg_timer.h" @@ -448,7 +448,7 @@ STORE * dataStore = NULL; TARIFFS_IMPL * tariffs = NULL; ADMINS_IMPL * admins = NULL; USERS_IMPL * users = NULL; -TRAFFCOUNTER * traffCnt = NULL; +TRAFFCOUNTER_IMPL * traffCnt = NULL; int msgID = -11; { @@ -545,7 +545,7 @@ WriteServLog("Storage plugin: %s. Loading successfull.", dataStore->GetVersion() tariffs = new TARIFFS_IMPL(dataStore); admins = new ADMINS_IMPL(dataStore); users = new USERS_IMPL(settings, dataStore, tariffs, admins->GetSysAdmin()); -traffCnt = new TRAFFCOUNTER(users, tariffs, settings->GetRulesFileName()); +traffCnt = new TRAFFCOUNTER_IMPL(users, tariffs, settings->GetRulesFileName()); traffCnt->SetMonitorDir(settings->GetMonitorDir()); modSettings = settings->GetModulesSettings();