Move IOStream to GpCommon

This commit is contained in:
elasota
2020-09-12 13:32:53 -04:00
parent 480a4b6098
commit f07137b52d
57 changed files with 483 additions and 477 deletions

View File

@@ -1,9 +1,9 @@
#pragma once
class GpIOStream;
namespace PortabilityLayer
{
class IOStream;
class HostFont;
class HostFontHandler
@@ -11,7 +11,7 @@ namespace PortabilityLayer
public:
virtual void Shutdown() = 0;
virtual HostFont *LoadFont(IOStream *stream) = 0;
virtual HostFont *LoadFont(GpIOStream *stream) = 0;
virtual bool KeepStreamOpen() const = 0;
static void SetInstance(HostFontHandler *instance);