X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/6c05b2e63b58b19df2f35707fa12f238a18458e7..3648fc30af7a06fa7fbc0c70ee04dfb05b5ccf21:/stglibs/srvconf.lib/include/stg/servconf_types.h diff --git a/stglibs/srvconf.lib/include/stg/servconf_types.h b/stglibs/srvconf.lib/include/stg/servconf_types.h index 4c0e5927..f323e99e 100644 --- a/stglibs/srvconf.lib/include/stg/servconf_types.h +++ b/stglibs/srvconf.lib/include/stg/servconf_types.h @@ -40,6 +40,8 @@ struct ADMIN_CONF; struct TARIFF_DATA; +struct SERVICE_CONF; +struct CORP_CONF; namespace STG { @@ -75,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 { @@ -150,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 { @@ -166,26 +171,26 @@ typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & } -namespace GET_ADMINS +namespace GET_TARIFF { -typedef std::vector INFO; +typedef TARIFF_DATA INFO; typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); } -namespace GET_TARIFF +namespace GET_SERVICE { -typedef TARIFF_DATA INFO; +typedef SERVICE_CONF INFO; typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); } -namespace GET_TARIFFS +namespace GET_CORP { -typedef std::vector INFO; +typedef CORP_CONF INFO; typedef void (* CALLBACK)(bool result, const std::string & reason, const INFO & info, void * data); }