]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
Fight CLang warnings.
[stg.git] / projects / stargazer / plugins / configuration / rpcconfig / user_helper.h
index 6421a467805be914ba89f417e2a8c018ac52144b..fc1417b4d3e70d553240ed112b3e861ddb6cde1a 100644 (file)
@@ -1,29 +1,38 @@
-#ifndef __USER_HELPER_H__
-#define __USER_HELPER_H__
+#pragma once
 
 #include <string>
 
 #include <xmlrpc-c/base.hpp>
-#include "../../../users.h"
-#include "../../../admin.h"
-#include "base_store.h"
+
+namespace STG
+{
+
+class Admin;
+struct Store;
+class Tariffs;
+class User;
+class Users;
+
+}
 
 class USER_HELPER
 {
 public:
-    USER_HELPER(user_iter & it)
-        : iter(it)
+    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 BASE_STORE & store);
+                     const STG::Store & store,
+                     STG::Tariffs * tariffs);
 private:
-    user_iter & iter;
+    UserPtr & ptr;
+    STG::Users & users;
 };
-
-#endif