X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/76dfa1976656bc8a0781050b675d9ea5875f8b1b..8c6fa3fbaccc22127280bf77a48fab5a3ee0716e:/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 91b022f1..76153f57 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h +++ b/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h @@ -21,19 +21,47 @@ #ifndef __STG_PARSER_USER_INFO_H__ #define __STG_PARSER_USER_INFO_H__ +#include "parser.h" + +#include "stg/common.h" + #include -#include "parser.h" +class USERS; -class PARSER_USER_INFO : public BASE_PARSER { -public: - int ParseStart(void *data, const char *el, const char **attr); - int ParseEnd(void *data, const char *el); +namespace STG +{ +namespace PARSER +{ -private: - std::string login; +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[ToLower(tag)] = new FACTORY(users); } + private: + const USERS & m_users; + }; - void CreateAnswer(); + 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); + + private: + const USERS & m_users; + std::string m_login; + + void CreateAnswer(); }; +} // namespace PARSER +} // namespace STG + #endif