X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/85513928f6a270af94c1477f5ae2773647b04cd7..0907aa4037b12b6b88ee24495d4577a064d4f8db:/projects/sgconf/users.h?ds=sidebyside diff --git a/projects/sgconf/users.h b/projects/sgconf/users.h index d6c2dd8b..01bc6db5 100644 --- a/projects/sgconf/users.h +++ b/projects/sgconf/users.h @@ -1,34 +1,11 @@ -#ifndef __STG_SGCONF_USERS_H__ -#define __STG_SGCONF_USERS_H__ - -#include -#include +#pragma once 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*/); +class OPTION_BLOCKS; +class COMMANDS; -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); +void AppendUsersOptionBlock(COMMANDS & commands, OPTION_BLOCKS & blocks); } - -#endif