git.stg.codes
/
stg.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Ticket 37. The time_t currentTime parameter added in
[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 83f70b5c4df2428cfabb48a296688c1ff2618604..4e1dd7966f0a584be40ffc972779d2cdc9bfd525 100644
(file)
--- a/
projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
+++ b/
projects/stargazer/plugins/configuration/rpcconfig/user_helper.h
@@
-14,8
+14,9
@@
class TARIFFS;
class USER_HELPER
{
public:
- USER_HELPER(USER_PTR & p)
- : ptr(p)
+ USER_HELPER(USER_PTR & p, USERS & us)
+ : ptr(p),
+ users(us)
{
}
@@
-28,6
+29,7
@@
public:
TARIFFS * tariffs);
private:
USER_PTR & ptr;
+ USERS & users;
};
#endif