| 254 | } |
| 255 | |
| 256 | void Command::FirePostExecuteSuccess(const Object::Pointer returnValue) |
| 257 | { |
| 258 | // Debugging output |
| 259 | if (DEBUG_COMMAND_EXECUTION) |
| 260 | { |
| 261 | CommandTracing::PrintTrace("COMMANDS", "execute" + CommandTracing::SEPARATOR |
| 262 | + "success: id=" + this->GetId() + "; returnValue=" + |
| 263 | (returnValue.IsNull() ? QString("nullptr") : returnValue->ToString())); |
| 264 | } |
| 265 | |
| 266 | executionEvents.postExecuteSuccess(this->GetId(), returnValue); |
| 267 | } |
| 268 | |
| 269 | void Command::FirePreExecute(const ExecutionEvent::ConstPointer event) |
| 270 | { |
no test coverage detected