Edit

kc3-lang/ftgl/include/FTGLPolygonFont.h

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2001-11-04 04:55:43
    Hash : 29f37277
    Message : Unix line endings

  • include/FTGLPolygonFont.h
  • #ifndef		__FTGLPolygonFont__
    #define		__FTGLPolygonFont__
    
    #include "FTGL.h"
    
    #include	"FTFont.h"
    
    class FTGlyph;
    
    
    /**
     * FTGLPolygonFont is a specialisation of the FTFont class for handling
     * tesselated Polygon Mesh fonts
     *
     * @see		FTFont
     */
    class FTGL_EXPORT FTGLPolygonFont : public FTFont
    {
    	public:
    		/**
    		 * Default Constructor
    		 */
    		FTGLPolygonFont();
    		
    		/**
    		 * Destructor
    		 */
    		~FTGLPolygonFont();
    		
    	private:
    		/**
    		 * Construct a FTPolyGlyph.
    		 *
    		 * @param g	The glyph index NOT the char code.
    		 * @return	An FTPolyGlyph or <code>null</code> on failure.
    		 */
    		virtual FTGlyph* MakeGlyph( unsigned int g);
    		
    };
    
    
    #endif	//	__FTGLPolygonFont__