X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/db33c64eab7528d3eb95b53332d80a5f8f4b80b2..38ee45741b7e4265cb763a9c20368d278ec0031f:/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..83f70b5c 100644
--- a/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
+++ b/projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
@@ -5,29 +5,29 @@
#include <xmlrpc-c/base.hpp>
-#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)
+ : 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 BASE_STORE & store,
+ const STORE & store,
TARIFFS * tariffs);
private:
- user_iter & iter;
+ USER_PTR & ptr;
};
#endif