X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/df9f528d8ea5b3ba19bebcaf0324c3282edeffcc..8e80bb9cec2c90dd61f810fb1525932a434288eb:/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 39211a76..50f31017 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h +++ b/projects/stargazer/plugins/configuration/sgconfig/parser_user_info.h @@ -18,17 +18,19 @@ * 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 { + +struct Users; + namespace PARSER { @@ -38,21 +40,22 @@ class USER_INFO : public BASE_PARSER class FACTORY : public BASE_PARSER::FACTORY { public: - FACTORY(const ADMIN & admin, const USERS & users) - : m_admin(admin), m_users(users) - {} - virtual BASE_PARSER * create() { return new USER_INFO(m_admin, m_users); } + 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 ADMIN & m_admin; - const USERS & m_users; + const Users & m_users; }; - USER_INFO(const ADMIN & admin, const USERS & users) - : BASE_PARSER(admin, "GetUserInfo"), m_users(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); private: - const USERS & m_users; + const Users & m_users; std::string m_login; void CreateAnswer(); @@ -60,5 +63,3 @@ class USER_INFO : public BASE_PARSER } // namespace PARSER } // namespace STG - -#endif