#ifndef __STG_SGCONF_SERVICES_H__ #define __STG_SGCONF_SERVICES_H__ #include #include namespace SGCONF { struct CONFIG; bool GetServicesFunction(const CONFIG & config, const std::string & /*arg*/, const std::map & /*options*/); bool GetServiceFunction(const CONFIG & config, const std::string & arg, const std::map & /*options*/); bool DelServiceFunction(const CONFIG & config, const std::string & arg, const std::map & /*options*/); bool AddServiceFunction(const CONFIG & config, const std::string & arg, const std::map & options); bool ChgServiceFunction(const CONFIG & config, const std::string & arg, const std::map & options); } // namespace SGCONF #endif