]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
Fix compilation issues for XML RPC interface
[stg.git] / projects / stargazer / plugins / configuration / rpcconfig / user_helper.h
index 63d1da0756aa4428d97f7548f3fa1ba11b4ebdb4..ddc784441acb7a55725eee94d408f9bd0af0c7f1 100644 (file)
@@ -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