mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
17 lines
240 B
C++
17 lines
240 B
C++
#pragma once
|
|
|
|
struct IGpLogDriver;
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class HostLogDriver
|
|
{
|
|
public:
|
|
static void SetInstance(IGpLogDriver *instance);
|
|
static IGpLogDriver *GetInstance();
|
|
|
|
private:
|
|
static IGpLogDriver *ms_instance;
|
|
};
|
|
}
|