| 143 | // ── RcxCommand ── |
| 144 | |
| 145 | RcxCommand::RcxCommand(RcxController* ctrl, Command cmd) |
| 146 | : m_ctrl(ctrl), m_cmd(cmd) {} |
| 147 | |
| 148 | void RcxCommand::undo() { m_ctrl->applyCommand(m_cmd, true); } |
| 149 | void RcxCommand::redo() { m_ctrl->applyCommand(m_cmd, false); } |
nothing calls this directly
no outgoing calls
no test coverage detected