X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/9dc2984179d989f8774ea7ff6d72c81d376b5a2c..b27841d687ec9e84983340b5581376dfb24010ea:/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h diff --git a/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h b/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h index 1024983f..f9e04823 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h +++ b/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h @@ -18,35 +18,48 @@ * Author : Maxim Mamontov */ -#ifndef __STG_PARSER_USER_INFO_H__ -#define __STG_PARSER_USER_INFO_H__ +#pragma once #include "parser.h" -#include +#include "stg/common.h" -class USERS; +#include namespace STG { + +class Users; + namespace PARSER { 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); + class FACTORY : public BASE_PARSER::FACTORY + { + public: + explicit FACTORY(const Users & users) : m_users(users) {} + BASE_PARSER * create(const Admin & admin) override { return new USER_INFO(admin, m_users); } + static void Register(REGISTRY & registry, const Users & users) + { registry[ToLower(tag)] = new FACTORY(users); } + private: + const Users & m_users; + }; + + static const char * tag; + + USER_INFO(const Admin & admin, const Users & users) + : BASE_PARSER(admin, tag), m_users(users) {} + int Start(void * data, const char * el, const char ** attr) override; private: - const USERS & m_users; + const Users & m_users; std::string m_login; - void CreateAnswer(); + void CreateAnswer() override; }; -} -} - -#endif +} // namespace PARSER +} // namespace STG