00001 #ifndef _OUTLINEFONT_H_ 00002 #define _OUTLINEFONT_H_ 00003 00004 namespace glttf { 00005 00007 00011 class OutlineGlyph : public Glyph 00012 { 00013 public: 00015 typedef int Parameter; 00017 static const Parameter DEFAULT_PARAMETER = 5; 00018 00020 00024 OutlineGlyph(const FT_GlyphSlot glyph, Parameter subdiv); 00025 00027 00030 static void setupState() {} 00031 00033 00036 static void cleanupState() {} 00037 private: 00038 }; 00039 00041 typedef BasicFont<OutlineGlyph> OutlineFont; 00042 00043 } 00044 00045 #endif 00046