]> git.stg.codes - stg.git/blobdiff - projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
Port to CMake, get rid of os_int.h.
[stg.git] / 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
deleted file mode 100644 (file)
index 6421a46..0000000
+++ /dev/null
@@ -1,29 +0,0 @@
-#ifndef __USER_HELPER_H__
-#define __USER_HELPER_H__
-
-#include <string>
-
-#include <xmlrpc-c/base.hpp>
-#include "../../../users.h"
-#include "../../../admin.h"
-#include "base_store.h"
-
-class USER_HELPER
-{
-public:
-    USER_HELPER(user_iter & it)
-        : iter(it)
-    {
-    }
-
-    void GetUserInfo(xmlrpc_c::value * info,
-                     bool hidePassword = false);
-    bool SetUserInfo(const xmlrpc_c::value & info,
-                     const ADMIN & admin,
-                     const std::string & login,
-                     const BASE_STORE & store);
-private:
-    user_iter & iter;
-};
-
-#endif