X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/99090ca5351c98fd9ce9773456a8a3c3936e8c60..8c6fa3fbaccc22127280bf77a48fab5a3ee0716e:/stglibs/srvconf.lib/parsers/get_service.h diff --git a/stglibs/srvconf.lib/parsers/get_service.h b/stglibs/srvconf.lib/parsers/get_service.h index 24c04849..d8213627 100644 --- a/stglibs/srvconf.lib/parsers/get_service.h +++ b/stglibs/srvconf.lib/parsers/get_service.h @@ -37,22 +37,25 @@ namespace GET_SERVICE class PARSER: public STG::PARSER { public: - PARSER(CALLBACK f, void * data); + typedef GET_SERVICE::INFO INFO; + PARSER(CALLBACK f, void * data, const std::string & encoding); virtual ~PARSER(); int ParseStart(const char * el, const char ** attr); void ParseEnd(const char * el); + void Failure(const std::string & reason) { callback(false, reason, info, data); } private: PROPERTY_PARSERS propertyParsers; CALLBACK callback; void * data; INFO info; + std::string encoding; int depth; bool parsingAnswer; std::string error; void ParseService(const char * el, const char ** attr); - void ParseServiceParams(const char * el, const char ** attr); + //void ParseServiceParams(const char * el, const char ** attr); }; } // namespace GET_SERVICE