1 //
2 // The Fontaine Font Analysis Project
3 //
4 // Copyright (c) 2009, 2015 by Edward H. Trager
5 // All Rights Reserved
6 //
7 // Released under the GNU GPL version 2.0 or later.
8 //
9 
10 //
11 // Ahom.h
12 // 2015.06.30.ET
13 //
14 
15 #ifndef ORTHOGRAPHY_DATA
16 #include "../OrthographyData.h"
17 #endif
18 
19 #ifndef AHOM
20 #define AHOM
21 
22 //
23 //
24 //
25 namespace Ahom{
26 
27 //
28 // Unicode values
29 //
30 UINT32 values[]={
31 	START_RANGE_PAIR,
32 	0x11700,0x11719,
33 	START_RANGE_PAIR,
34 	0x1171D,0x1172B,
35 	START_RANGE_PAIR,
36 	0x11730,0x1173F,
37 	END_OF_DATA
38 };
39 
40 //
41 // Sample sentences
42 //
43 const char *sentences[]={
44 	"",
45 	END_OF_DATA
46 };
47 
48 
49 //
50 //
51 //
52 OrthographyData data={
53 	"Ahom",
54 	"Ahom",
55 	0x11700, // AHOM LETTER KA
56 	values,
57 	"",
58 	sentences
59 };
60 
61 const OrthographyData *pData = &data;
62 
63 }; // end of namespace
64 
65 #endif
66