#ifndef __FONT_H__ #define __FONT_H__ #include "tables/table.h" #include "head.h" #include class font { private: FontTable table; fontHead head; std::string path; public: font(){}; font(const char*); ~font(){}; void read(reader*); void display(); }; #endif