#ifndef JES_FONT_H #define JES_FONT_H #include "jes/Ref.h" #include #include FT_FREETYPE_H namespace jes { class Font { public: Font(); ~Font(); bool load(FT_Library ft, const char * fname, size_t size); protected: FT_Face m_face; bool m_loaded; }; typedef Ref FontRef; } #endif