| 158 | } |
| 159 | |
| 160 | void GroupController::postGoMenu() |
| 161 | { |
| 162 | for (const auto& serial : m_devices) { |
| 163 | if (true == isHost(serial)) { |
| 164 | continue; |
| 165 | } |
| 166 | auto device = qsc::IDeviceManage::getInstance().getDevice(serial); |
| 167 | if (!device) { |
| 168 | continue; |
| 169 | } |
| 170 | |
| 171 | device->postGoMenu(); |
| 172 | } |
| 173 | } |
| 174 | |
| 175 | void GroupController::postAppSwitch() |
| 176 | { |
no outgoing calls
no test coverage detected