#ifndef __GLFONT_H__ #define __GLFONT_H__ #include "Exceptions.h" #include "gltexture.h" namespace mogltk { class glfont : public Base { public: glfont(); virtual ~glfont(); void Load(const String &) throw (GeneralException); private: gltexture * fonttex; }; }; #endif