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