X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/e9cb0683c0b33d8458c1d9b2558bbeb5d101e680..f384309c9c663a4b381d2e1a8545693514835395:/stglibs/srvconf.lib/parser_server_info.cpp diff --git a/stglibs/srvconf.lib/parser_server_info.cpp b/stglibs/srvconf.lib/parser_server_info.cpp index 645f6099..d4c610e0 100644 --- a/stglibs/srvconf.lib/parser_server_info.cpp +++ b/stglibs/srvconf.lib/parser_server_info.cpp @@ -19,7 +19,7 @@ * Author : Maxim Mamontov */ -#include "stg/parser_server_info.h" +#include "parser_server_info.h" #include "stg/common.h" @@ -28,6 +28,8 @@ #include +using namespace STG; + namespace { @@ -37,7 +39,7 @@ const size_t DIRNAME_LEN = 16; } -PARSER_SERVER_INFO::PARSER_SERVER_INFO() +SERVER_INFO::PARSER::PARSER() : callback(NULL), data(NULL), depth(0), @@ -54,7 +56,7 @@ PARSER_SERVER_INFO::PARSER_SERVER_INFO() AddParser(propertyParsers, "dir_name_" + x2str(i), info.dirName[i], GetEncodedValue); } //----------------------------------------------------------------------------- -int PARSER_SERVER_INFO::ParseStart(const char *el, const char **attr) +int SERVER_INFO::PARSER::ParseStart(const char *el, const char **attr) { depth++; if (depth == 1) @@ -67,7 +69,7 @@ else return 0; } //----------------------------------------------------------------------------- -void PARSER_SERVER_INFO::ParseEnd(const char * /*el*/) +void SERVER_INFO::PARSER::ParseEnd(const char * /*el*/) { depth--; if (depth == 0 && parsingAnswer) @@ -79,7 +81,7 @@ if (depth == 0 && parsingAnswer) } } //----------------------------------------------------------------------------- -void PARSER_SERVER_INFO::SetCallback(CALLBACK f, void * d) +void SERVER_INFO::PARSER::SetCallback(CALLBACK f, void * d) { callback = f; data = d;