X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/db33c64eab7528d3eb95b53332d80a5f8f4b80b2..4f1aca7dfb6adf867713ad48e14ad79080e13cfa:/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 ab5fd32f..4e1dd796 100644 --- a/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h +++ b/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h @@ -5,29 +5,31 @@ #include -#include "../../../users.h" +#include "stg/users.h" class ADMIN; -class BASE_STORE; +class STORE; class TARIFFS; class USER_HELPER { public: - USER_HELPER(user_iter & it) - : iter(it) + USER_HELPER(USER_PTR & p, 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 ADMIN * admin, const std::string & login, - const BASE_STORE & store, + const STORE & store, TARIFFS * tariffs); private: - user_iter & iter; + USER_PTR & ptr; + USERS & users; }; #endif