Hash :
6a024aef
Author :
Date :
2001-09-16T21:52:46
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
#ifndef __FTGLOutlineFont
#define __FTGLOutlineFont
#include "FTFont.h"
#include "FTGL.h"
class FTVectorGlyph;
/**
* FTGLOutlineFont is a specialisation of the FTFont class for handling
* Vector Outline fonts
*
* @see FTFont
*/
class FTGLOutlineFont : public FTFont
{
public:
// methods
FTGLOutlineFont();
~FTGLOutlineFont();
void render( const char* string);
void render( const wchar_t* string);
// attributes
private:
// methods
bool MakeGlyphList();
// attributes
FTVectorGlyph* tempGlyph;
};
#endif