Hash :
883d4607
Author :
Date :
2001-08-07T01:03:44
#ifndef __FTGLOutlineFont
#define __FTGLOutlineFont
#include "FTFont.h"
#include "FTGL.h"
class FTVectorGlyph;
class FTGLOutlineFont : public FTFont
{
public:
// methods
FTGLOutlineFont();
~FTGLOutlineFont();
void render( const char* string);
// attributes
private:
// methods
bool MakeGlyphList();
// attributes
FTVectorGlyph* tempGlyph;
};
#endif