Files
Aerofoil/PortabilityLayer/HostFontHandler.cpp

17 lines
289 B
C++
Raw Normal View History

2019-12-21 18:40:17 -05:00
#include "HostFontHandler.h"
namespace PortabilityLayer
{
2020-09-12 14:01:51 -04:00
void HostFontHandler::SetInstance(IGpFontHandler *instance)
2019-12-21 18:40:17 -05:00
{
ms_instance = instance;
}
2020-09-12 14:01:51 -04:00
IGpFontHandler *HostFontHandler::GetInstance()
2019-12-21 18:40:17 -05:00
{
return ms_instance;
}
2020-09-12 14:01:51 -04:00
IGpFontHandler *HostFontHandler::ms_instance = nullptr;
2019-12-21 18:40:17 -05:00
}