]> git.stg.codes - stg.git/blobdiff - projects/sgconf/users.h
Merge branch 'stg-2.409-radius'
[stg.git] / projects / sgconf / users.h
index d6c2dd8b1a306337afda216f67aed9bd9cac5866..a757fe10fb2be2b1d730f7e9cf671ecf881584b9 100644 (file)
@@ -1,33 +1,13 @@
 #ifndef __STG_SGCONF_USERS_H__
 #define __STG_SGCONF_USERS_H__
 
-#include <string>
-#include <map>
-
 namespace SGCONF
 {
 
-struct CONFIG;
-
-bool GetUsersFunction(const CONFIG & config,
-                      const std::string & /*arg*/,
-                      const std::map<std::string, std::string> & /*options*/);
-
-bool GetUserFunction(const CONFIG & config,
-                     const std::string & arg,
-                     const std::map<std::string, std::string> & /*options*/);
-
-bool DelUserFunction(const CONFIG & config,
-                     const std::string & arg,
-                     const std::map<std::string, std::string> & /*options*/);
-
-bool AddUserFunction(const CONFIG & config,
-                     const std::string & arg,
-                     const std::map<std::string, std::string> & options);
+class OPTION_BLOCKS;
+class COMMANDS;
 
-bool ChgUserFunction(const CONFIG & config,
-                     const std::string & arg,
-                     const std::map<std::string, std::string> & options);
+void AppendUsersOptionBlock(COMMANDS & commands, OPTION_BLOCKS & blocks);
 
 }