That Terminal
A terminal emulator designed for video making purposes.
read_fonts.hh
Go to the documentation of this file.
1 #ifndef bqtReadFontsHH
2 #define bqtReadFontsHH
6 #include <map>
7 #include <string>
8 #include <vector>
9 
11 using FontsInfo = std::map<std::pair<std::string/*filename*/, std::pair<unsigned/*x*/,unsigned/*y*/>>,
12  std::pair<std::string/*guessed encoding*/, std::vector<bool>/*supported characters*/>>;
13 
23 
24 #endif
FontsInfo ReadFontsList()
Definition: read_fonts.cc:234
std::map< std::pair< std::string, std::pair< unsigned, unsigned > >, std::pair< std::string, std::vector< bool >> > FontsInfo
Definition: read_fonts.hh:12