]> git.stg.codes - stg.git/commitdiff
Removed ServerInfo helper.
authorMaxim Mamontov <faust.madf@gmail.com>
Mon, 7 Oct 2013 21:34:40 +0000 (00:34 +0300)
committerMaxim Mamontov <faust.madf@gmail.com>
Mon, 7 Oct 2013 21:34:40 +0000 (00:34 +0300)
stglibs/srvconf.lib/servconf.cpp

index 2970cf3975421b5bce78b9e81ae2ba593835c296..5503dab12d5bbbbeaf1ffbe0d4e655ae09fe651f 100644 (file)
@@ -45,8 +45,6 @@ public:
     IMPL(const std::string & server, uint16_t port,
          const std::string & login, const std::string & password);
 
-    int ServerInfo(SERVER_INFO::CALLBACK f, void * data);
-
     const std::string & GetStrError() const;
     static void Start(void * data, const char * el, const char ** attr);
     static void End(void * data, const char * el);
@@ -117,7 +115,7 @@ return pImpl->Exec<SEND_MESSAGE::PARSER>(request, f, data);
 
 int SERVCONF::ServerInfo(SERVER_INFO::CALLBACK f, void * data)
 {
-    return pImpl->ServerInfo(f, data);
+return Exec<SERVER_INFO::PARSER>("<GetServerInfo/>", f, data);
 }
 
 int SERVCONF::CheckUser(const std::string & login, const std::string & password, CHECK_USER::CALLBACK f, void * data)
@@ -139,11 +137,6 @@ parser = XML_ParserCreate(NULL);
 nt.SetRxCallback(this, AnsRecv);
 }
 //-----------------------------------------------------------------------------
-int SERVCONF::IMPL::ServerInfo(SERVER_INFO::CALLBACK f, void * data)
-{
-return Exec<SERVER_INFO::PARSER>("<GetServerInfo/>", f, data);
-}
-//-----------------------------------------------------------------------------
 void SERVCONF::IMPL::Start(void * data, const char * el, const char ** attr)
 {
 PARSER * currParser = static_cast<PARSER *>(data);