From 3648fc30af7a06fa7fbc0c70ee04dfb05b5ccf21 Mon Sep 17 00:00:00 2001 From: Maxim Mamontov Date: Sun, 20 Oct 2013 13:46:13 +0300 Subject: [PATCH] Fixed compilation issues. --- stglibs/srvconf.lib/include/stg/servconf.h | 10 ++-- .../srvconf.lib/include/stg/servconf_types.h | 51 ++++--------------- stglibs/srvconf.lib/servconf.cpp | 10 ++-- 3 files changed, 21 insertions(+), 50 deletions(-) diff --git a/stglibs/srvconf.lib/include/stg/servconf.h b/stglibs/srvconf.lib/include/stg/servconf.h index f2afda39..2a2dbcaa 100644 --- a/stglibs/srvconf.lib/include/stg/servconf.h +++ b/stglibs/srvconf.lib/include/stg/servconf.h @@ -49,7 +49,7 @@ public: int RawXML(const std::string & request, RAW_XML::CALLBACK f, void * data); - int GetAdmins(GET_ADMINS::CALLBACK f, void * data); + int GetAdmins(GET_CONTAINER::CALLBACK::TYPE f, void * data); int GetAdmin(const std::string & login, GET_ADMIN::CALLBACK f, void * data); int ChgAdmin(const ADMIN_CONF_RES & conf, SIMPLE::CALLBACK f, void * data); int AddAdmin(const std::string & login, @@ -57,7 +57,7 @@ public: SIMPLE::CALLBACK f, void * data); int DelAdmin(const std::string & login, SIMPLE::CALLBACK f, void * data); - int GetTariffs(GET_TARIFFS::CALLBACK f, void * data); + int GetTariffs(GET_CONTAINER::CALLBACK::TYPE f, void * data); int GetTariff(const std::string & name, GET_TARIFF::CALLBACK f, void * data); int ChgTariff(const TARIFF_DATA_RES & conf, SIMPLE::CALLBACK f, void * data); int AddTariff(const std::string & name, @@ -65,7 +65,7 @@ public: SIMPLE::CALLBACK f, void * data); int DelTariff(const std::string & name, SIMPLE::CALLBACK f, void * data); - int GetUsers(GET_USERS::CALLBACK f, void * data); + int GetUsers(GET_CONTAINER::CALLBACK::TYPE f, void * data); int GetUser(const std::string & login, GET_USER::CALLBACK f, void * data); int ChgUser(const std::string & login, const USER_CONF_RES & conf, @@ -77,7 +77,7 @@ public: int SendMessage(const std::string & login, const std::string & text, SIMPLE::CALLBACK f, void * data); int CheckUser(const std::string & login, const std::string & password, SIMPLE::CALLBACK f, void * data); - int GetServices(GET_SERVICES::CALLBACK f, void * data); + int GetServices(GET_CONTAINER::CALLBACK::TYPE f, void * data); int GetService(const std::string & name, GET_SERVICE::CALLBACK f, void * data); int ChgService(const SERVICE_CONF_RES & conf, SIMPLE::CALLBACK f, void * data); int AddService(const std::string & name, @@ -85,7 +85,7 @@ public: SIMPLE::CALLBACK f, void * data); int DelService(const std::string & name, SIMPLE::CALLBACK f, void * data); - int GetCorporations(GET_CORPORATIONS::CALLBACK f, void * data); + int GetCorporations(GET_CONTAINER::CALLBACK::TYPE f, void * data); int GetCorp(const std::string & name, GET_CORP::CALLBACK f, void * data); int ChgCorp(const CORP_CONF_RES & conf, SIMPLE::CALLBACK f, void * data); int AddCorp(const std::string & name, diff --git a/stglibs/srvconf.lib/include/stg/servconf_types.h b/stglibs/srvconf.lib/include/stg/servconf_types.h index 98add644..f323e99e 100644 --- a/stglibs/srvconf.lib/include/stg/servconf_types.h +++ b/stglibs/srvconf.lib/include/stg/servconf_types.h @@ -77,6 +77,17 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, void * data); } // namespace SIMPLE +namespace GET_CONTAINER +{ + +template +struct CALLBACK +{ +typedef void (* TYPE)(bool result, const std::string & reason, const std::vector & info, void * data); +}; + +} + namespace AUTH_BY { @@ -152,14 +163,6 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & } // namespace GET_USER -namespace GET_USERS -{ - -typedef std::vector INFO; -typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); - -} // namespace GET_USERS - namespace GET_ADMIN { @@ -168,14 +171,6 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & } -namespace GET_ADMINS -{ - -typedef std::vector INFO; -typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); - -} - namespace GET_TARIFF { @@ -184,14 +179,6 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & } -namespace GET_TARIFFS -{ - -typedef std::vector INFO; -typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); - -} - namespace GET_SERVICE { @@ -200,14 +187,6 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & } -namespace GET_SERVICES -{ - -typedef std::vector INFO; -typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); - -} - namespace GET_CORP { @@ -216,14 +195,6 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & } -namespace GET_CORPORATIONS -{ - -typedef std::vector INFO; -typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); - -} - } // namespace STG #endif diff --git a/stglibs/srvconf.lib/servconf.cpp b/stglibs/srvconf.lib/servconf.cpp index a9881f05..ab8e5e79 100644 --- a/stglibs/srvconf.lib/servconf.cpp +++ b/stglibs/srvconf.lib/servconf.cpp @@ -137,7 +137,7 @@ return pImpl->RawXML(request, f, data); // -- Admins -- -int SERVCONF::GetAdmins(GET_ADMINS::CALLBACK f, void * data) +int SERVCONF::GetAdmins(GET_CONTAINER::CALLBACK::TYPE f, void * data) { return pImpl->Exec >("admins", "", f, data); } @@ -169,7 +169,7 @@ return pImpl->Exec("DelAdmin", "::TYPE f, void * data) { return pImpl->Exec >("tariffs", "", f, data); } @@ -201,7 +201,7 @@ return pImpl->Exec("DelTariff", "::TYPE f, void * data) { return pImpl->Exec >("users", "", f, data); } @@ -246,7 +246,7 @@ return pImpl->Exec("CheckUser", "::TYPE f, void * data) { return pImpl->Exec >("services", "", f, data); } @@ -278,7 +278,7 @@ return pImpl->Exec("DelService", "::TYPE f, void * data) { return pImpl->Exec >("corporations", "", f, data); } -- 2.43.2