- FACTORY(const SERVICES & services) : m_services(services) {}
- virtual BASE_PARSER * create(const ADMIN & admin) { return new GET_SERVICES(admin, m_services); }
- static void Register(REGISTRY & registry, const SERVICES & services)
+ FACTORY(const Services & services) : m_services(services) {}
+ virtual BASE_PARSER * create(const Admin & admin) { return new GET_SERVICES(admin, m_services); }
+ static void Register(REGISTRY & registry, const Services & services)
- FACTORY(const SERVICES & services) : m_services(services) {}
- virtual BASE_PARSER * create(const ADMIN & admin) { return new GET_SERVICE(admin, m_services); }
- static void Register(REGISTRY & registry, SERVICES & services)
+ FACTORY(const Services & services) : m_services(services) {}
+ virtual BASE_PARSER * create(const Admin & admin) { return new GET_SERVICE(admin, m_services); }
+ static void Register(REGISTRY & registry, Services & services)
: BASE_PARSER(admin, tag), m_services(services) {}
int Start(void * data, const char * el, const char ** attr);
private:
std::string m_name;
: BASE_PARSER(admin, tag), m_services(services) {}
int Start(void * data, const char * el, const char ** attr);
private:
std::string m_name;
- FACTORY(SERVICES & services) : m_services(services) {}
- virtual BASE_PARSER * create(const ADMIN & admin) { return new ADD_SERVICE(admin, m_services); }
- static void Register(REGISTRY & registry, SERVICES & services)
+ FACTORY(Services & services) : m_services(services) {}
+ virtual BASE_PARSER * create(const Admin & admin) { return new ADD_SERVICE(admin, m_services); }
+ static void Register(REGISTRY & registry, Services & services)
: BASE_PARSER(admin, tag), m_services(services) {}
int Start(void * data, const char * el, const char ** attr);
private:
std::string m_name;
: BASE_PARSER(admin, tag), m_services(services) {}
int Start(void * data, const char * el, const char ** attr);
private:
std::string m_name;
- FACTORY(SERVICES & services) : m_services(services) {}
- virtual BASE_PARSER * create(const ADMIN & admin) { return new DEL_SERVICE(admin, m_services); }
- static void Register(REGISTRY & registry, SERVICES & services)
+ FACTORY(Services & services) : m_services(services) {}
+ virtual BASE_PARSER * create(const Admin & admin) { return new DEL_SERVICE(admin, m_services); }
+ static void Register(REGISTRY & registry, Services & services)
: BASE_PARSER(admin, tag), m_services(services) {}
int Start(void * data, const char * el, const char ** attr);
private:
std::string m_name;
: BASE_PARSER(admin, tag), m_services(services) {}
int Start(void * data, const char * el, const char ** attr);
private:
std::string m_name;
- FACTORY(SERVICES & services) : m_services(services) {}
- virtual BASE_PARSER * create(const ADMIN & admin) { return new CHG_SERVICE(admin, m_services); }
- static void Register(REGISTRY & registry, SERVICES & services)
+ FACTORY(Services & services) : m_services(services) {}
+ virtual BASE_PARSER * create(const Admin & admin) { return new CHG_SERVICE(admin, m_services); }
+ static void Register(REGISTRY & registry, Services & services)
: BASE_PARSER(admin, tag), m_services(services) {}
int Start(void * data, const char * el, const char ** attr);
private:
: BASE_PARSER(admin, tag), m_services(services) {}
int Start(void * data, const char * el, const char ** attr);
private: