git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
More std::jthread
[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
index ddc784441acb7a55725eee94d408f9bd0af0c7f1..5457c953322bbc7f74ea696f269373b8423fb955 100644
(file)
--- a/
projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
+++ b/
projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
@@
-1,33
+1,38
@@
-#ifndef __USER_HELPER_H__
-#define __USER_HELPER_H__
+#pragma once
#include <string>
#include <xmlrpc-c/base.hpp>
#include <string>
#include <xmlrpc-c/base.hpp>
-#include "users.h"
+namespace STG
+{
+
+struct Admin;
+struct Store;
+struct Tariffs;
+struct User;
+struct Users;
-class ADMIN;
-class STORE;
-class TARIFFS;
+}
class USER_HELPER
{
public:
class USER_HELPER
{
public:
- USER_HELPER(USER_PTR & p)
- : ptr(p)
+ 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,
{
}
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 std::string & login,
- const ST
ORE
& store,
-
TARIFFS
* tariffs);
+ const ST
G::Store
& store,
+
STG::Tariffs
* tariffs);
private:
private:
- USER_PTR & ptr;
+ UserPtr & ptr;
+ STG::Users & users;
};
};
-
-#endif