+class USER_INFO : public BASE_PARSER
+{
+ public:
+ USER_INFO(const ADMIN & admin, const USERS & users)
+ : BASE_PARSER(admin, "GetUserInfo"), m_users(users) {}
+ int Start(void * data, const char * el, const char ** attr);
+
+ private:
+ const USERS & m_users;
+ std::string m_login;
+
+ void CreateAnswer();