CommandDelegate.h
Go to the documentation of this file.
23 using CommandFunctionDelegate = Delegate<void(String commandLine, CommandOutput* commandOutput)>;
35 CommandDelegate(String reqName, String reqHelp, String reqGroup, CommandFunctionDelegate reqFunction)
36 : commandName(reqName), commandHelp(reqHelp), commandGroup(reqGroup), commandFunction(reqFunction)
CommandDelegate(String reqName, String reqHelp, String reqGroup, CommandFunctionDelegate reqFunction)
Definition: CommandDelegate.h:35
CommandFunctionDelegate commandFunction
Command Delegate (function that is called when command is invoked)
Definition: CommandDelegate.h:47
1.8.13