DeviceFinder: Add typedef DeviceList

This commit is contained in:
Jonas Kvinge
2023-06-01 18:43:43 +02:00
parent 8e14ef7c0c
commit a5a29f7ad3
15 changed files with 29 additions and 42 deletions

View File

@@ -22,8 +22,6 @@
#include "config.h"
#include <QList>
#include "devicefinder.h"
class AlsaPCMDeviceFinder : public DeviceFinder {
@@ -31,7 +29,7 @@ class AlsaPCMDeviceFinder : public DeviceFinder {
explicit AlsaPCMDeviceFinder();
bool Initialize() override { return true; }
QList<Device> ListDevices() override;
DeviceList ListDevices() override;
private:
Q_DISABLE_COPY(AlsaPCMDeviceFinder)