* @brief Disconnects every registered device. */
| 857 | * @brief Disconnects every registered device. |
| 858 | */ |
| 859 | void IO::ConnectionManager::disconnectAllDevices() |
| 860 | { |
| 861 | for (auto& [id, dm] : m_devices) |
| 862 | disconnectDevice(id); |
| 863 | } |
| 864 | |
| 865 | /** |
| 866 | * @brief Destroys the device managers and UI drivers. main() calls this after the QML |