#include <string>
#include "parser.h"
-#include "../../../users.h"
-#include "../../../admins.h"
-#include "../../../tariffs.h"
+#include "users.h"
+#include "admins.h"
+#include "tariffs.h"
#include "stg_logger.h"
using namespace std;
void SetAdmins(ADMINS * a);
void SetUsers(USERS * u);
void SetTariffs(TARIFFS * t);
- void SetStore(BASE_STORE * s);
+ void SetStore(STORE * s);
void SetStgSettings(const SETTINGS * s);
const string & GetAdminLogin();
uint32_t GetAdminIP();
ADMINS * admins;
USERS * users;
TARIFFS * tariffs;
- BASE_STORE * store;
+ STORE * store;
const SETTINGS * settings;
BASE_PARSER * currParser;
};
//-----------------------------------------------------------------------------
#endif //CONFIGPROTO_H
-