#ifndef LIBRARY_FONT_H #define LIBRARY_FONT_H class Font { private: Font(); public: std::string getName(); int getHeight(); int getWidth(); }; #endif