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