FONTAINE  1.0
WesternEuropean.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 // WesternEuropean.h
13 //
14 
15 #ifndef ORTHOGRAPHY_DATA
16 #include "../OrthographyData.h"
17 #endif
18 
19 #ifndef WESTERN_EUROPEAN
20 #define WESTERN_EUROPEAN
21 
22 namespace WesternEuropean{
23 
24 //
25 // Unicode values
26 //
29  0x00C0,0x00CF, // Western Latin
31  0x00D0,0x00D6, // Western Latin
33  0x00D8,0x00DF, // Western Latin
35  0x00E0,0x00EF, // Western Latin
37  0x00F0,0x00F6, // Western Latin
39  0x00F8,0x00FF, // Western Latin
41 };
42 
43 //
44 // Sample sentences
45 //
46 const char *sentences[]={
47  "Falsches Üben von Xylophonmusik quält jeden größeren Zwerg.",
48  "Vår sære Zulu fra badeøya spilte jo whist og quickstep i min taxi.",
50 };
51 
52 
53 //
54 //
55 //
57  "Western European",
58  "Western European",
59  0x00C0, // LATIN CAPITAL LETTER A WITH GRAVE
60  values,
61  "ÁàåÇçæÐðéîñöœßþÿ",
62  sentences
63 };
64 
66 
67 }; // end of namespace
68 
69 #endif