FONTAINE
1.0
Main Page
Namespaces
Classes
Files
File List
File Members
src
orthographies
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
//
27
UINT32
values
[]={
28
0X20AC,
29
END_OF_DATA
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."
,
37
END_OF_DATA
38
};
39
40
41
//
42
// data
43
//
44
OrthographyData
data
={
45
"Euro"
,
46
"Euro"
,
47
0x20AC,
// EURO SYMBOL
48
values
,
49
"€"
,
50
sentences
51
};
52
53
const
OrthographyData
*
pData
= &
data
;
54
55
};
// end of namespace
56
57
#endif
Generated by
1.8.4