mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
17 lines
265 B
C++
17 lines
265 B
C++
#include "HostLogDriver.h"
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
void HostLogDriver::SetInstance(IGpLogDriver *instance)
|
|
{
|
|
ms_instance = instance;
|
|
}
|
|
|
|
IGpLogDriver *HostLogDriver::GetInstance()
|
|
{
|
|
return ms_instance;
|
|
}
|
|
|
|
IGpLogDriver *HostLogDriver::ms_instance;
|
|
}
|