X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/91b5ae18ae465d0887785aab6dc0eb7abc0d5488..0907aa4037b12b6b88ee24495d4577a064d4f8db:/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 ddc78444..5457c953 100644 --- a/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h +++ b/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h @@ -1,33 +1,38 @@ -#ifndef __USER_HELPER_H__ -#define __USER_HELPER_H__ +#pragma once #include #include -#include "users.h" +namespace STG +{ + +struct Admin; +struct Store; +struct Tariffs; +struct User; +struct Users; -class ADMIN; -class STORE; -class TARIFFS; +} class USER_HELPER { public: - USER_HELPER(USER_PTR & p) - : ptr(p) + using UserPtr = STG::User*; + USER_HELPER(UserPtr & p, STG::Users & us) + : ptr(p), + users(us) { } 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; + UserPtr & ptr; + STG::Users & users; }; - -#endif