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