- initial import
This commit is contained in:
38
src/engine/audio/Audio_iOS.h
Normal file
38
src/engine/audio/Audio_iOS.h
Normal file
@@ -0,0 +1,38 @@
|
||||
#ifndef __AUDIO_IOS
|
||||
#define __AUDIO_IOS
|
||||
|
||||
class IosInputDevice: public InputDevice
|
||||
{
|
||||
protected:
|
||||
|
||||
public:
|
||||
IosInputDevice();
|
||||
~IosInputDevice();
|
||||
|
||||
|
||||
|
||||
void open();
|
||||
void close();
|
||||
};
|
||||
|
||||
class IosOutputDevice: public OutputDevice
|
||||
{
|
||||
protected:
|
||||
public:
|
||||
IosOutputDevice();
|
||||
~IosOutputDevice();
|
||||
enum
|
||||
{
|
||||
Receiver,
|
||||
Speaker,
|
||||
Bluetooth
|
||||
};
|
||||
|
||||
int route();
|
||||
void setRoute(int route);
|
||||
|
||||
void open();
|
||||
void close();
|
||||
};
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user