X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/b3139bf3f37b3b0244efea8b4b5e5a7d0bc90095..b27841d687ec9e84983340b5581376dfb24010ea:/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h diff --git a/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h b/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h index 4e1dd796..fc1417b4 100644 --- a/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h +++ b/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h @@ -1,20 +1,25 @@ -#ifndef __USER_HELPER_H__ -#define __USER_HELPER_H__ +#pragma once #include #include -#include "stg/users.h" +namespace STG +{ + +class Admin; +struct Store; +class Tariffs; +class User; +class Users; -class ADMIN; -class STORE; -class TARIFFS; +} class USER_HELPER { public: - USER_HELPER(USER_PTR & p, USERS & us) + using UserPtr = STG::User*; + USER_HELPER(UserPtr & p, STG::Users & us) : ptr(p), users(us) { @@ -23,13 +28,11 @@ public: void GetUserInfo(xmlrpc_c::value * info, bool hidePassword = false); bool SetUserInfo(const xmlrpc_c::value & info, - const ADMIN * admin, + const STG::Admin& admin, const std::string & login, - const STORE & store, - TARIFFS * tariffs); + const STG::Store & store, + STG::Tariffs * tariffs); private: - USER_PTR & ptr; - USERS & users; + UserPtr & ptr; + STG::Users & users; }; - -#endif