generated from bing/readnotes
21 lines
299 B
C
21 lines
299 B
C
|
#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
|