59 def.operation(command1::operate)
60 .captureUndo(command1::capture)
61 .undoOperation(command1::undoIt);
66 def.operation(command2::operate)
67 .captureUndo(command2::capture)
68 .undoOperation(command2::undoIt);
73 def.operation(command3::operate)
74 .captureUndo(command3::capture)
75 .undoOperation(command3::undoIt);
CommandSetup test_Dummy_command3
test dummy command to increment a global variable; no arguments
#define COMMAND_DEFINITION(_NAME_)
Macro to write command definitions in a compact form.
Steam-Layer implementation namespace root.
CommandSetup test_Dummy_command2
test dummy command to invoke the given functor and append the result onto a global log string buffer ...
Some dummy command functions used for building unit test cases.
Actually defining a command and binding it to execution parameters.