mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-10-01 02:35:48 -04:00
c843a047ff
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@5000 b45a01b8-16f6-495d-af2f-9b41ad6348cc
20 lines
481 B
C++
20 lines
481 B
C++
#ifndef AUDIODEVICEHELPER_H
|
|
#define AUDIODEVICEHELPER_H
|
|
#include <QAudioInput>
|
|
#include <QAudioOutput>
|
|
|
|
class AudioDeviceHelper
|
|
{
|
|
public:
|
|
AudioDeviceHelper();
|
|
static QAudioInput* getDefaultInputDevice();
|
|
static QAudioInput* getPreferedInputDevice();
|
|
//static list getInputDeviceList();
|
|
|
|
static QAudioOutput* getDefaultOutputDevice();
|
|
static QAudioOutput* getPreferedOutputDevice();
|
|
//static list getOutputDeviceList();
|
|
};
|
|
|
|
#endif // AUDIODEVICEHELPER_H
|