- 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;