strawberry-audio-player-win.../src/engine/alsadevicefinder.h

40 lines
1.1 KiB
C
Raw Normal View History

2018-02-27 18:06:05 +01:00
/*
* Strawberry Music Player
2021-03-20 21:14:47 +01:00
* Copyright 2017-2021, Jonas Kvinge <jonas@jkvinge.net>
2018-02-27 18:06:05 +01:00
*
* Strawberry is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Strawberry is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Strawberry. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef ALSADEVICEFINDER_H
#define ALSADEVICEFINDER_H
#include "config.h"
#include "devicefinder.h"
2023-06-01 19:31:19 +02:00
#include "enginedevice.h"
2018-02-27 18:06:05 +01:00
class AlsaDeviceFinder : public DeviceFinder {
public:
2020-04-07 16:49:15 +02:00
explicit AlsaDeviceFinder();
2018-02-27 18:06:05 +01:00
2020-10-17 17:29:09 +02:00
bool Initialize() override { return true; }
2023-06-01 19:31:19 +02:00
EngineDeviceList ListDevices() override;
2021-06-20 19:04:08 +02:00
private:
Q_DISABLE_COPY(AlsaDeviceFinder)
2018-02-27 18:06:05 +01:00
};
2021-07-11 09:49:38 +02:00
#endif // ALSADEVICEFINDER_H