FONTAINE  1.0
Euro.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 // Euro.h
13 //
14 
15 #ifndef ORTHOGRAPHY_DATA
16 #include "../OrthographyData.h"
17 #endif
18 
19 #ifndef EURO_ORTHOGRAPHY
20 #define EURO_ORTHOGRAPHY
21 
22 namespace Euro{
23 
24 //
25 // Unicode values
26 //
28  0X20AC,
30 };
31 
32 //
33 // Sample sentences
34 //
35 const char *sentences[]={
36  "The euro “€” is the official currency of 15 member states of the European Union.",
38 };
39 
40 
41 //
42 // data
43 //
45  "Euro",
46  "Euro",
47  0x20AC, // EURO SYMBOL
48  values,
49  "€",
50  sentences
51 };
52 
54 
55 }; // end of namespace
56 
57 #endif
END_OF_DATA
#define END_OF_DATA
Definition: OrthographyData.h:23
OrthographyData
Definition: OrthographyData.h:28
UINT32
unsigned int UINT32
Definition: OrthographyData.h:19
Euro
Definition: Euro.h:22
Euro::values
UINT32 values[]
Definition: Euro.h:27
Euro::pData
const OrthographyData * pData
Definition: Euro.h:53
Euro::sentences
const char * sentences[]
Definition: Euro.h:35
Euro::data
OrthographyData data
Definition: Euro.h:44