Edit

kc3-lang/ftgl/include/FTGLPixmapFont.h

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2001-08-05 21:34:40
    Hash : 678be1a1
    Message : Minor tidy ups

  • include/FTGLPixmapFont.h
  • #ifndef		__FTGLPixmapFont__
    #define		__FTGLPixmapFont__
    
    
    #include	"FTFont.h"
    
    class FTPixmapGlyph;
    
    class	FTGLPixmapFont : public FTFont
    {
    	public:
    		// methods
    		FTGLPixmapFont();
    		~FTGLPixmapFont();
    
    	private:
    		// methods
    		bool MakeGlyphList();
    		
    		// attributes
    		FTPixmapGlyph* tempGlyph;
    		
    };
    
    
    #endif	//	__FTGLPixmapFont__