| 132 | } |
| 133 | |
| 134 | void Control::SendCommand(std::string_view _command) |
| 135 | { |
| 136 | OnCommand(_command); |
| 137 | |
| 138 | for (auto& child : mChilds) |
| 139 | child->SendCommand(_command); |
| 140 | } |
| 141 | |
| 142 | void Control::OnCommand(std::string_view _command) |
| 143 | { |
no outgoing calls
no test coverage detected