mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 23:00:42 +00:00
19 lines
307 B
C++
19 lines
307 B
C++
#pragma once
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class HostAudioChannel;
|
|
|
|
class HostAudioDriver
|
|
{
|
|
public:
|
|
virtual HostAudioChannel *CreateChannel() = 0;
|
|
|
|
static HostAudioDriver *GetInstance();
|
|
static void SetInstance(HostAudioDriver *instance);
|
|
|
|
private:
|
|
static HostAudioDriver *ms_instance;
|
|
};
|
|
}
|