* @brief Returns the IN endpoint list with a placeholder entry at index 0. */
| 374 | * @brief Returns the IN endpoint list with a placeholder entry at index 0. |
| 375 | */ |
| 376 | QStringList IO::Drivers::USB::inEndpointList() const |
| 377 | { |
| 378 | QStringList list; |
| 379 | list.append(tr("Select IN Endpoint")); |
| 380 | list.append(m_inEndpointLabels); |
| 381 | return list; |
| 382 | } |
| 383 | |
| 384 | /** |
| 385 | * @brief Returns the OUT endpoint list with a "None (Read-only)" entry at index 0. |
no test coverage detected