Files
Aerofoil/GpCommon/GpFontHandler.h

13 lines
201 B
C
Raw Permalink Normal View History

2020-09-12 14:01:51 -04:00
#pragma once
class GpIOStream;
struct IGpFont;
struct IGpFontHandler
{
virtual void Shutdown() = 0;
virtual IGpFont *LoadFont(GpIOStream *stream) = 0;
virtual bool KeepStreamOpen() const = 0;
};