Add EngineDevice class

This commit is contained in:
Jonas Kvinge
2023-06-01 19:31:19 +02:00
parent a1dbbba1a1
commit 315073f9a7
20 changed files with 170 additions and 111 deletions

View File

@@ -23,13 +23,14 @@
#include "config.h"
#include "devicefinder.h"
#include "enginedevice.h"
class AlsaPCMDeviceFinder : public DeviceFinder {
public:
explicit AlsaPCMDeviceFinder();
bool Initialize() override { return true; }
DeviceList ListDevices() override;
EngineDeviceList ListDevices() override;
private:
Q_DISABLE_COPY(AlsaPCMDeviceFinder)