68 def.operation(command1::operate)
69 .captureUndo(command1::capture)
70 .undoOperation(command1::undoIt);
75 def.operation(command2::operate)
76 .captureUndo(command2::capture)
77 .undoOperation(command2::undoIt);
82 def.operation(command3::operate)
83 .captureUndo(command3::capture)
84 .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.