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 // Armenian.h
13 //
14 
15 #ifndef ORTHOGRAPHY_DATA
16 #include "../OrthographyData.h"
17 #endif
18 
19 #ifndef ARMENIAN
20 #define ARMENIAN
21 
22 namespace Armenian{
23 
24 //
25 // Unicode values
26 //
27 UINT32 values[]={
28 	START_RANGE_PAIR,
29 	0x0531,0x0556,
30 	START_RANGE_PAIR,
31 	0x0559,0x055f,
32 	START_RANGE_PAIR,
33 	0x0561,0x0587,
34 	0x589,0x58a,
35 	END_OF_DATA
36 };
37 
38 //
39 // Sample sentences
40 //
41 const char *sentences[]={
42 	"շատ շնորհակալ եմ",
43 	END_OF_DATA
44 };
45 
46 
47 //
48 //
49 //
50 OrthographyData data={
51 	"Armenian", // Common name
52 	"Հայերեն", // Native name
53 	0x0561, // ARMENIAN SMALL LETTER AYB
54 	values,
55 	"ԱաԲբԳգԴդ", // Sample characters
56 	sentences
57 };
58 
59 const OrthographyData *pData = &data;
60 
61 }; // end of namespace
62 
63 #endif
64