X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e767204dbf56ac466489c142f0acdaebd5d0b935..91b5ae18ae465d0887785aab6dc0eb7abc0d5488:/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 63d1da07..ddc78444 100644 --- a/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h +++ b/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h @@ -14,20 +14,20 @@ class TARIFFS; class USER_HELPER { public: - USER_HELPER(user_iter & it) - : iter(it) + USER_HELPER(USER_PTR & p) + : ptr(p) { } 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 STORE & store, TARIFFS * tariffs); private: - user_iter & iter; + USER_PTR & ptr; }; #endif