FONTAINE  1.0
Dutch.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 // Dutch.h
13 //
14 
15 #ifndef ORTHOGRAPHY_DATA
16 #include "../OrthographyData.h"
17 #endif
18 
19 #ifndef DUTCH
20 #define DUTCH
21 
22 namespace Dutch{
23 
24 //
25 // Unicode values
26 //
28  0x00C1,
29  0x00E1,
30  0x00C2,
31  0x00E2,
32  0x00C8,
33  0x00E8,
34  0x00C9,
35  0x00E9,
36  0x00CA,
37  0x00EA,
38  0x00CB,
39  0x00EB,
40  0x00CD,
41  0x00ED,
42  0x00CF,
43  0x00EF,
44  0x0132,
45  0x0133,
46  0x00D3,
47  0x00F3,
48  0x00D4,
49  0x00F4,
50  0x00D6,
51  0x00F6,
52  0x00DA,
53  0x00FA,
54  0x00DB,
55  0x00FB,
56  0x00C4,
57  0x00E4,
58  0x00DC,
59  0x00FC,
61 };
62 
63 //
64 // Sample sentences
65 //
66 const char *sentences[]={
67  "De export blijvt qua omvang typisch zwak.",
68  "Catz' elixer bij Aquavit gemengd: je proeft whiskey!",
70 };
71 
72 
73 //
74 //
75 //
77  "Dutch",
78  "Nederlands",
79  0x0132, // LATIN CAPITAL LIGATURE IJ
80  values,
81  "ÁáËëIJijÛû",
82  sentences
83 };
84 
86 
87 }; // end of namespace
88 
89 #endif