git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Fix radius plugin authorization
[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 6421a467805be914ba89f417e2a8c018ac52144b..83f70b5c4df2428cfabb48a296688c1ff2618604 100644
(file)
--- a/
projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
+++ b/
projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
@@
-4,26
+4,30
@@
#include <string>
#include <xmlrpc-c/base.hpp>
#include <string>
#include <xmlrpc-c/base.hpp>
-#include "../../../users.h"
-#include "../../../admin.h"
-#include "base_store.h"
+
+#include "stg/users.h"
+
+class ADMIN;
+class STORE;
+class TARIFFS;
class USER_HELPER
{
public:
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,
{
}
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 std::string & login,
- const BASE_STORE & store);
+ const STORE & store,
+ TARIFFS * tariffs);
private:
private:
-
user_iter & ite
r;
+
USER_PTR & pt
r;
};
#endif
};
#endif