#ifndef __GLFONT_H__ #define __GLFONT_H__ #include #include "font.h" namespace mogltk { class glfont : public font { public: glfont(Handle *); virtual ~glfont(); void drawentry(Uint16, int, int, glColorP = WHITE); private: void Bind(int); }; }; #endif