X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e5499c61083684b28bcbc6950aae66cbf0938703..e9ae1f101b5418c0ba2e6c9d86b23c12f0140982:/libs/srvconf/parsers/simple.h diff --git a/libs/srvconf/parsers/simple.h b/libs/srvconf/parsers/simple.h index 244e8ef0..48a0d808 100644 --- a/libs/srvconf/parsers/simple.h +++ b/libs/srvconf/parsers/simple.h @@ -18,8 +18,7 @@ * Author : Maxim Mamontov */ -#ifndef __STG_STGLIBS_SRVCONF_PARSER_SIMPLE_H__ -#define __STG_STGLIBS_SRVCONF_PARSER_SIMPLE_H__ +#pragma once #include "base.h" @@ -29,28 +28,27 @@ namespace STG { -namespace SIMPLE +namespace Simple { -class PARSER: public STG::PARSER +class Parser: public STG::Parser { -public: - PARSER(const std::string & tag, CALLBACK f, void * data, const std::string & encoding); - int ParseStart(const char * el, const char ** attr); - void ParseEnd(const char * el); - void Failure(const std::string & reason) { callback(false, reason, data); } - -private: - std::string tag; - CALLBACK callback; - void * data; - std::string encoding; - int depth; - - void ParseAnswer(const char * el, const char ** attr); + public: + Parser(const std::string& tag, Callback f, void* data, const std::string& encoding); + + int ParseStart(const char* el, const char** attr) override; + void ParseEnd(const char* el) override; + void Failure(const std::string& reason) override { callback(false, reason, data); } + + private: + std::string tag; + Callback callback; + void* data; + std::string encoding; + int depth; + + void ParseAnswer(const char* el, const char** attr); }; } // namespace SIMPLE } // namespace STG - -#endif