* @brief Returns the device list with a "Select Device" placeholder at index 0. */
| 355 | * @brief Returns the device list with a "Select Device" placeholder at index 0. |
| 356 | */ |
| 357 | QStringList IO::Drivers::USB::deviceList() const |
| 358 | { |
| 359 | QStringList list; |
| 360 | list.append(tr("Select Device")); |
| 361 | list.append(m_deviceLabels); |
| 362 | return list; |
| 363 | } |
| 364 | |
| 365 | /** |
| 366 | * @brief Returns the index of the currently selected USB device. |
no test coverage detected