Edit

kc3-lang/ftgl/include/FTGLOutlineFont.h

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2001-08-01 04:17:58
    Hash : fe2aca96
    Message : Updated for FTVectorGlyph

  • include/FTGLOutlineFont.h
  • #ifndef		__FTGLOutlineFont
    #define		__FTGLOutlineFont
    
    #include	"FTFont.h"
    
    #include "FTGL.h"
    
    
    class FTVectorGlyph;
    
    class	FTGLOutlineFont : public FTFont
    {
    	public:
    		// methods
    		FTGLOutlineFont();
    		~FTGLOutlineFont();
    		
    //		bool render( const char* string);
    		
    		// attributes
    		
    	private:
    		// methods
    		bool MakeGlyphList();
    		
    		// attributes
    		FTVectorGlyph* tempGlyph;
    
    		
    };
    #endif