FONTAINE
1.0
Main Page
Namespaces
Classes
Files
File List
File Members
src
orthographies
BasicGreek.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
// BasicGreek.h
13
//
14
15
#ifndef ORTHOGRAPHY_DATA
16
#include "../OrthographyData.h"
17
#endif
18
19
#ifndef BASICGREEK
20
#define BASICGREEK
21
22
namespace
BasicGreek{
23
24
//
25
// Unicode values
26
//
27
UINT32
values
[]={
28
0x0386,
29
0x0388,
30
0x0389,
31
0x038a,
32
0x038c,
33
0x038e,
34
0x038f,
35
0x0390,
36
START_RANGE_PAIR
,
37
0x0391,0x03a1,
38
START_RANGE_PAIR
,
39
0x03a3,0x03a9,
40
START_RANGE_PAIR
,
41
0x03aa,0x03b0,
42
START_RANGE_PAIR
,
43
0x03b1,0x03c9,
44
START_RANGE_PAIR
,
45
0x03ca,0x03ce,
46
END_OF_DATA
47
};
48
49
//
50
// Sample sentences
51
//
52
const
char
*
sentences
[]={
53
"Γαζίες καὶ μυρτιὲς δὲν θὰ βρῶ πιὰ στὸ χρυσαφὶ ξέφωτο."
,
54
"Ξεσκεπάζω τὴν ψυχοφθόρα βδελυγμία. "
,
55
END_OF_DATA
56
};
57
58
59
//
60
//
61
//
62
OrthographyData
data
={
63
"Basic Greek"
,
// Common name
64
"Ελληνικό αλφάβητο"
,
// Native name
65
0x03a9,
// GREEK CAPITAL LETTER OMEGA
66
values
,
67
"ΑαΒβΓγΔδΕεΞξΩω"
,
// Sample characters
68
sentences
69
};
70
71
const
OrthographyData
*
pData
= &
data
;
72
73
};
// end of namespace
74
75
#endif
Generated by
1.8.4