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 // Kazakh.h
13 //
14 
15 #ifndef ORTHOGRAPHY_DATA
16 #include "../OrthographyData.h"
17 #endif
18 
19 #ifndef KAZAKH
20 #define KAZAKH
21 
22 namespace Kazakh{
23 
24 //
25 // Unicode values -- beyond basic Arabic only:
26 //
27 UINT32 values[]={
28 	0x0674, // HIGH HAMZA
29 	0x0675,
30 	0x0676,
31 	0x0677,
32 	0x0678,
33 	0x067e,
34 	0x0686,
35 	0x06ad,
36 	0x06af,
37 	0x06c6,
38 	0x06c9,
39 	0x06cb,
40 	0x06d5,
41 	END_OF_DATA
42 };
43 
44 //
45 // Sample sentences
46 //
47 const char *sentences[]={
48 	"",
49 	END_OF_DATA
50 };
51 
52 
53 //
54 //
55 //
56 OrthographyData data={
57 	"Kazakh", // Common name
58 	"قازاق", // Native name
59 	0x06ad, // key
60 	values,
61 	"ٴ ٵ ٷ ٸ پ چ ڭ گ ۆ ۉ", // Sample characters
62 	sentences
63 };
64 
65 const OrthographyData *pData = &data;
66 
67 }; // end of namespace
68 
69 #endif
70