LASi
glyphMgr.h
Go to the documentation of this file.
1 
13 #ifndef GLYPH_MANAGER_H
14 #define GLYPH_MANAGER_H
15 
16 #include <ft2build.h>
17 #include FT_FREETYPE_H
18 #include FT_GLYPH_H
19 
22 class FreetypeGlyphMgr { //: public Manager<FT_GlyphRec*> {
23  private:
24  FT_Glyph _glyph;
25 
26  public:
28  FreetypeGlyphMgr(FT_Glyph glyph);
32  operator FT_Glyph() const;
33  void assign(const FT_Glyph glyph);
34 };
35 #endif