#ifndef __USER_HELPER_H__ #define __USER_HELPER_H__ #include #include #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