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 // Uighur.h
13 //
14 
15 #ifndef ORTHOGRAPHY_DATA
16 #include "../OrthographyData.h"
17 #endif
18 
19 #ifndef UIGHUR
20 #define UIGHUR
21 
22 namespace Uighur{
23 
24 //
25 // Unicode values
26 //
27 UINT32 values[]={
28 	0x06ad,
29 	0x06c6,
30 	0x06c8,
31 	0x06cb,
32 	0x06d0,
33 	0x06d5,
34 	0x067e,
35 	0x0686,
36 	0x0698,
37 	0x06af,
38 	END_OF_DATA
39 };
40 
41 //
42 // Sample sentences
43 //
44 const char *sentences[]={
45 	"",
46 	END_OF_DATA
47 };
48 
49 
50 //
51 //
52 //
53 OrthographyData data={
54 	"Uighur", // Common name
55 	"ئۇيغۇر", // Native name
56 	0x06ad, // ARABIC LETTER NG
57 	values,
58 	"ڛ ۆ ڭ ە پ چ ژ گ", // Sample characters
59 	sentences
60 };
61 
62 const OrthographyData *pData = &data;
63 
64 }; // end of namespace
65 
66 #endif
67