Files
Aerofoil/PortabilityLayer/HostFontHandler.cpp
2020-09-12 14:01:51 -04:00

17 lines
289 B
C++

#include "HostFontHandler.h"
namespace PortabilityLayer
{
void HostFontHandler::SetInstance(IGpFontHandler *instance)
{
ms_instance = instance;
}
IGpFontHandler *HostFontHandler::GetInstance()
{
return ms_instance;
}
IGpFontHandler *HostFontHandler::ms_instance = nullptr;
}