FONTAINE  1.0
OrthographyData.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 //
12 // OrthographyData
13 //
14 //
15 #ifndef ORTHOGRAPHY_DATA
16 #define ORTHOGRAPHY_DATA
17 
18 #ifndef UINT32
19  typedef unsigned int UINT32;
20 #endif
21 
22 #define START_RANGE_PAIR 0x0002 // Using "STX" to demarcate the beginning of a range pair
23 #define END_OF_DATA 0x0000 // Using NULL to mark the end of a set
24 
25 //
26 // OrthographyData
27 //
29 
30  public:
31 
32  const char *commonName;
33  const char *nativeName;
36  const char *sampleCharacters;
37  const char **sampleSentences;
38 
39 };
40 
41 
42 #endif
unsigned int UINT32
Definition: OrthographyData.h:19
const char * nativeName
Definition: OrthographyData.h:33
const char * sampleCharacters
Definition: OrthographyData.h:36
UINT32 key
Definition: OrthographyData.h:34
Definition: OrthographyData.h:28
const char * commonName
Definition: OrthographyData.h:32
const char ** sampleSentences
Definition: OrthographyData.h:37
UINT32 * values
Definition: OrthographyData.h:35