mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-02 06:06:10 -04:00
cleaned directory structure
git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@4962 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
4fb02f9f67
commit
0d4feb89b4
24 changed files with 1094 additions and 20 deletions
19
plugins/VOIP/gui/audiodevicehelper.h
Normal file
19
plugins/VOIP/gui/audiodevicehelper.h
Normal file
|
@ -0,0 +1,19 @@
|
|||
#ifndef AUDIODEVICEHELPER_H
|
||||
#define AUDIODEVICEHELPER_H
|
||||
#include <QtMultimediaKit/QAudioInput>
|
||||
#include <QtMultimediaKit/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
|
Loading…
Add table
Add a link
Reference in a new issue