MCPcopy Create free account
hub / github.com/BeneficialCode/WinArk / Execute

Method Execute

WinArk/AppCommandBase.cpp:16–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14}
15
16bool AppCommandList::Execute() {
17 for (auto& cmd : _commands)
18 if (!cmd->Execute())
19 return false;
20 return InvokeCallback(true);
21}
22
23bool AppCommandList::Undo() {
24 for (int i = (int)_commands.size() - 1; i >= 0; --i)

Callers 2

AddCommandMethod · 0.45
RedoMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected