Edit

kc3-lang/ftgl/include/FTGLPolygonFont.h

Branch :

  • Show log

    Commit

  • Author : henry
    Date : 2002-07-01 09:44:57
    Hash : 8fd8b009
    Message : Inlined private functions

  • 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.
             */
            inline virtual FTGlyph* MakeGlyph( unsigned int g);
            
    };
    
    
    #endif  //  __FTGLPolygonFont__