mirror of
https://github.com/elasota/Aerofoil.git
synced 2025-09-23 06:53:43 +00:00
10 lines
206 B
C++
10 lines
206 B
C++
#include "GpFontHandlerFactory.h"
|
|
#include "GpFontHandler_FreeType2.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
PortabilityLayer::HostFontHandler *GpFontHandlerFactory::Create()
|
|
{
|
|
return GpFontHandler_FreeType2::Create();
|
|
}
|