FONTAINE  1.0
FontFile.h
Go to the documentation of this file.
1 //
2 // The Fontaine Font Analysis Project
3 //
4 // Copyright (c) 2009 by Edward H. Trager
5 // All Rights Reserved
6 //
7 // Released under the GNU GPL version 2.0 or later.
8 //
9 
10 
11 #include <string>
12 #include <set>
13 #include "Script.h"
14 
18 
19 //
20 // This class contains information
21 // about a single font file:
22 //
23 class FontFile{
24 
25 private:
26 
27  std::string _fileName;
28  std::string _commonName;
29  std::string _nativeName;
30 
34 
35  std::set<Script> _supportedScripts;
36 
37 };
38 
fontStyle
Definition: FontFile.h:17
fontStroke _stroke
Definition: FontFile.h:31
Definition: FontFile.h:17
fontStyle _style
Definition: FontFile.h:33
std::string _fileName
Definition: FontFile.h:27
fontWeight
Definition: FontFile.h:16
Definition: FontFile.h:15
fontWeight _weight
Definition: FontFile.h:32
Definition: FontFile.h:16
fontStroke
Definition: FontFile.h:15
Definition: FontFile.h:16
Definition: FontFile.h:17
Definition: FontFile.h:15
std::string _commonName
Definition: FontFile.h:28
std::set< Script > _supportedScripts
Definition: FontFile.h:35
std::string _nativeName
Definition: FontFile.h:29
Definition: FontFile.h:16
Definition: FontFile.h:23
Definition: FontFile.h:17