#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:
- 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,
- const ADMIN & admin,
+ const ADMIN * admin,
const std::string & login,
- const BASE_STORE & store);
+ const STORE & store,
+ TARIFFS * tariffs);
private:
- user_iter & iter;
+ USER_PTR & ptr;
};
#endif