X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/250a7d6e7a4c8ffd644931b7b3964289a8f99151..ebf7574cf9ee065013517c074fc0d8fd8053fabd:/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 284b352c..d0a28455 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h +++ b/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h @@ -25,6 +25,8 @@ #include +class USERS; + namespace STG { namespace PARSER @@ -33,8 +35,21 @@ namespace PARSER class USER_INFO : public BASE_PARSER { public: + class FACTORY : public BASE_PARSER::FACTORY + { + public: + FACTORY(const USERS & users) : m_users(users) {} + virtual BASE_PARSER * create(const ADMIN & admin) { return new USER_INFO(admin, m_users); } + static void Register(REGISTRY & registry, const USERS & users) + { registry[tag] = new FACTORY(users); } + private: + const USERS & m_users; + }; + + static const char * tag; + USER_INFO(const ADMIN & admin, const USERS & users) - : BASE_PARSER(admin, "GetUserInfo"), m_users(users) {} + : BASE_PARSER(admin, tag), m_users(users) {} int Start(void * data, const char * el, const char ** attr); private: @@ -44,7 +59,7 @@ class USER_INFO : public BASE_PARSER void CreateAnswer(); }; -} -} +} // namespace PARSER +} // namespace STG #endif