#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"
* */
SETTINGS * settings = NULL;
-BASE_STORE * dataStore = NULL;
+STORE * dataStore = NULL;
TARIFFS * tariffs = NULL;
ADMINS * admins = NULL;
USERS * users = NULL;
tariffs = new TARIFFS_IMPL(dataStore);
admins = new ADMINS_IMPL(dataStore);
-users = new USERS_IMPL(settings, dataStore, tariffs, *admins->GetSysAdmin());
+users = new USERS_IMPL(settings, dataStore, tariffs, admins->GetSysAdmin());
traffCnt = new TRAFFCOUNTER(users, tariffs, settings->GetRulesFileName());
traffCnt->SetMonitorDir(settings->GetMonitorDir());