FONTAINE  1.0
BasicLatin.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 // BasicLatin.h
13 //
14 
15 #ifndef ORTHOGRAPHY_DATA
16 #include "../OrthographyData.h"
17 #endif
18 
19 #ifndef BASIC_LATIN
20 #define BASIC_LATIN
21 
22 namespace BasicLatin{
23 
24 //
25 // Unicode values
26 //
29  0x0041,0x005A,
31  0x0061,0x007A,
33 };
34 
35 //
36 // Sample sentences
37 //
38 const char *sentences[]={
39  "How quickly daft jumping zebras vex.",
40  "iPhone fanboys love quirky gadgets with just about zero functionality, maximum.",
41  "The quick brown fox jumps over the lazy dog.",
42  "Bright vixens jump; dozy fowl quack.",
43  "Big fjords vex quick waltz nymph.",
44  "Portez ce vieux whisky au juge blond qui fume .",
45  "Sic surgens, dux, zelotypos quam karus haberis.",
47 };
48 
49 
50 //
51 //
52 //
54  "Basic Latin",
55  "Basic Latin",
56  0x0041, // LATIN CAPITAL LETTER A
57  values,
58  "AaBbCcGgQqRrSsZz",
59  sentences
60 };
61 
63 
64 }; // end of namespace
65 
66 #endif
unsigned int UINT32
Definition: OrthographyData.h:19
Definition: BasicLatinStringUtilities.cpp:8
#define START_RANGE_PAIR
Definition: OrthographyData.h:22
Definition: OrthographyData.h:28
OrthographyData data
Definition: BasicLatin.h:53
UINT32 values[]
Definition: BasicLatin.h:27
const char * sentences[]
Definition: BasicLatin.h:38
#define END_OF_DATA
Definition: OrthographyData.h:23
const OrthographyData * pData
Definition: BasicLatin.h:62