X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/7766e753fefb962209f1898a234053f8c7bbe59d..5014a9d76df7cbe75b175d635908049ccd702c81:/projects/sgconf/api_action.h?ds=sidebyside
diff --git a/projects/sgconf/api_action.h b/projects/sgconf/api_action.h
index 55b38447..f27715ca 100644
--- a/projects/sgconf/api_action.h
+++ b/projects/sgconf/api_action.h
@@ -61,17 +61,25 @@ class COMMANDS
class API_ACTION : public ACTION
{
public:
+ struct PARAM
+ {
+ PARAM(const std::string & n,
+ const std::string & s,
+ const std::string & l)
+ : name(n),
+ shortDescr(s),
+ longDescr(l)
+ {}
+ std::string name;
+ std::string shortDescr;
+ std::string longDescr;
+ };
+
API_ACTION(COMMANDS & commands,
const std::string & paramDescription,
bool needArgument,
- const OPTION_BLOCK& suboptions,
- API_FUNCTION funPtr)
- : m_commands(commands),
- m_description(paramDescription),
- m_argument(needArgument ? "1" : ""), // Hack
- m_suboptions(suboptions),
- m_funPtr(funPtr)
- {}
+ const std::vector & params,
+ API_FUNCTION funPtr);
API_ACTION(COMMANDS & commands,
const std::string & paramDescription,
bool needArgument,
@@ -87,7 +95,7 @@ class API_ACTION : public ACTION
virtual std::string ParamDescription() const { return m_description; }
virtual std::string DefaultDescription() const { return ""; }
virtual OPTION_BLOCK & Suboptions() { return m_suboptions; }
- virtual PARSER_STATE Parse(int argc, char ** argv);
+ virtual PARSER_STATE Parse(int argc, char ** argv, void * /*data*/);
private:
COMMANDS & m_commands;
@@ -101,10 +109,26 @@ class API_ACTION : public ACTION
inline
ACTION * MakeAPIAction(COMMANDS & commands,
const std::string & paramDescription,
- bool needArgument,
+ const std::vector & params,
+ API_FUNCTION funPtr)
+{
+return new API_ACTION(commands, paramDescription, true, params, funPtr);
+}
+
+inline
+ACTION * MakeAPIAction(COMMANDS & commands,
+ const std::vector & params,
+ API_FUNCTION funPtr)
+{
+return new API_ACTION(commands, "", false, params, funPtr);
+}
+
+inline
+ACTION * MakeAPIAction(COMMANDS & commands,
+ const std::string & paramDescription,
API_FUNCTION funPtr)
{
-return new API_ACTION(commands, paramDescription, needArgument, funPtr);
+return new API_ACTION(commands, paramDescription, true, funPtr);
}
inline