mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 14:53:52 +00:00
22 lines
351 B
C++
22 lines
351 B
C++
#pragma once
|
|
|
|
|
|
namespace PortabilityLayer
|
|
{
|
|
class IOStream;
|
|
class HostFont;
|
|
|
|
class HostFontHandler
|
|
{
|
|
public:
|
|
virtual void Shutdown() = 0;
|
|
virtual HostFont *LoadFont(IOStream *stream) = 0;
|
|
|
|
static void SetInstance(HostFontHandler *instance);
|
|
static HostFontHandler *GetInstance();
|
|
|
|
private:
|
|
static HostFontHandler *ms_instance;
|
|
};
|
|
}
|