X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/0c9d10cb3d9399280fe5eca715287d2454788654..8c6fa3fbaccc22127280bf77a48fab5a3ee0716e:/projects/stargazer/plugins/configuration/sgconfig/parser_message.h diff --git a/projects/stargazer/plugins/configuration/sgconfig/parser_message.h b/projects/stargazer/plugins/configuration/sgconfig/parser_message.h index e7c12f4f..6ed6622d 100644 --- a/projects/stargazer/plugins/configuration/sgconfig/parser_message.h +++ b/projects/stargazer/plugins/configuration/sgconfig/parser_message.h @@ -19,12 +19,13 @@ * Author : Maxim Mamontov */ -#ifndef __STG_SGCONFIG_PARSER_USERS_H__ -#define __STG_SGCONFIG_PARSER_USERS_H__ +#ifndef __STG_SGCONFIG_PARSER_SEND_MESSAGE_H__ +#define __STG_SGCONFIG_PARSER_SEND_MESSAGE_H__ #include "parser.h" #include "stg/message.h" +#include "stg/common.h" #include #include @@ -40,8 +41,21 @@ namespace PARSER class SEND_MESSAGE: public BASE_PARSER { public: + class FACTORY : public BASE_PARSER::FACTORY + { + public: + explicit FACTORY(USERS & users) : m_users(users) {} + virtual BASE_PARSER * create(const ADMIN & admin) { return new SEND_MESSAGE(admin, m_users); } + static void Register(REGISTRY & registry, USERS & users) + { registry[ToLower(tag)] = new FACTORY(users); } + private: + USERS & m_users; + }; + + static const char * tag; + SEND_MESSAGE(const ADMIN & admin, USERS & users) - : BASE_PARSER(admin, "Message"), m_users(users), m_result(res_ok), m_user(NULL) {} + : BASE_PARSER(admin, tag), m_users(users), m_result(res_ok), m_user(NULL) {} int Start(void *data, const char *el, const char **attr); int End(void *data, const char *el); @@ -56,7 +70,7 @@ class SEND_MESSAGE: public BASE_PARSER void CreateAnswer(); }; -} -} +} // namespace PARSER +} // namespace STG #endif