X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/78e14695fc1b743f225a5aa30ca98784bce576c1..722a4fd38336dab14e00cb60c9e0c17867a0240e:/projects/stargazer/main.cpp diff --git a/projects/stargazer/main.cpp b/projects/stargazer/main.cpp index 2d5b808f..6a8c61f5 100644 --- a/projects/stargazer/main.cpp +++ b/projects/stargazer/main.cpp @@ -46,11 +46,12 @@ #include "settings.h" #include "user.h" -#include "users.h" -#include "admins.h" +#include "users_impl.h" +#include "admins_impl.h" +#include "tariffs_impl.h" #include "common.h" #include "traffcounter.h" -#include "base_plugin.h" +#include "plugin.h" #include "stg_logger.h" #include "stg_timer.h" #include "plugin_runner.h" @@ -450,7 +451,7 @@ int main(int argc, char * argv[]) * */ SETTINGS * settings = NULL; -BASE_STORE * dataStore = NULL; +STORE * dataStore = NULL; TARIFFS * tariffs = NULL; ADMINS * admins = NULL; USERS * users = NULL; @@ -549,9 +550,9 @@ if (loop.Start()) dataStore = storeLoader.GetStore(); WriteServLog("Storage plugin: %s. Loading successfull.", dataStore->GetVersion().c_str()); -tariffs = new TARIFFS(dataStore); -admins = new ADMINS(dataStore); -users = new USERS(settings, dataStore, tariffs, admins->GetSysAdmin()); +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->SetMonitorDir(settings->GetMonitorDir()); @@ -759,5 +760,3 @@ delete settings; return 0; } //----------------------------------------------------------------------------- - -