X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e9cb0683c0b33d8458c1d9b2558bbeb5d101e680..f384309c9c663a4b381d2e1a8545693514835395:/stglibs/srvconf.lib/parser_chg_user.cpp diff --git a/stglibs/srvconf.lib/parser_chg_user.cpp b/stglibs/srvconf.lib/parser_chg_user.cpp index 53ce941d..b5f4eb73 100644 --- a/stglibs/srvconf.lib/parser_chg_user.cpp +++ b/stglibs/srvconf.lib/parser_chg_user.cpp @@ -19,20 +19,22 @@ * Author : Maxim Mamontov */ -#include "stg/parser_chg_user.h" +#include "parser_chg_user.h" #include #include -PARSER_CHG_USER::PARSER_CHG_USER() +using namespace STG; + +CHG_USER::PARSER::PARSER() : callback(NULL), data(NULL), depth(0) { } //----------------------------------------------------------------------------- -int PARSER_CHG_USER::ParseStart(const char *el, const char **attr) +int CHG_USER::PARSER::ParseStart(const char *el, const char **attr) { depth++; if (depth == 1) @@ -47,12 +49,12 @@ if (depth == 1) return 0; } //----------------------------------------------------------------------------- -void PARSER_CHG_USER::ParseEnd(const char *) +void CHG_USER::PARSER::ParseEnd(const char *) { depth--; } //----------------------------------------------------------------------------- -void PARSER_CHG_USER::ParseAnswer(const char * /*el*/, const char ** attr) +void CHG_USER::PARSER::ParseAnswer(const char * /*el*/, const char ** attr) { if (!callback) return; @@ -62,7 +64,7 @@ else callback(false, "Invalid response.", data); } //----------------------------------------------------------------------------- -void PARSER_CHG_USER::SetCallback(CALLBACK f, void * d) +void CHG_USER::PARSER::SetCallback(CALLBACK f, void * d) { callback = f; data = d;