#ifndef __STG_SGCONF_USERS_H__ #define __STG_SGCONF_USERS_H__ #include #include namespace SGCONF { struct CONFIG; bool GetUsersFunction(const CONFIG & config, const std::string & /*arg*/, const std::map & /*options*/); bool GetUserFunction(const CONFIG & config, const std::string & arg, const std::map & /*options*/); bool DelUserFunction(const CONFIG & config, const std::string & arg, const std::map & /*options*/); bool AddUserFunction(const CONFIG & config, const std::string & arg, const std::map & options); bool ChgUserFunction(const CONFIG & config, const std::string & arg, const std::map & options); bool CheckUserFunction(const CONFIG & config, const std::string & arg, const std::map & options); bool SendMessageFunction(const CONFIG & config, const std::string & arg, const std::map & options); } #endif