FONTAINE
1.0
Main Page
Namespaces
Classes
Files
File List
File Members
src
orthographies
Mongolian.h
Go to the documentation of this file.
1
//
2
// Mongolian.h
3
//
4
5
#ifndef ORTHOGRAPHY_DATA
6
#include "../OrthographyData.h"
7
#endif
8
9
#ifndef MONGOLIAN
10
#define MONGOLIAN
11
12
namespace
Mongolian{
13
14
//
15
// Unicode values
16
//
17
UINT32
values
[]={
18
// Punctuation
19
START_RANGE_PAIR
,
20
0x1800,0x180A,
21
// Format Controls
22
START_RANGE_PAIR
,
23
0x180B,0x180E,
24
// Digits
25
START_RANGE_PAIR
,
26
0x1810,0x1819,
27
// Letters
28
START_RANGE_PAIR
,
29
0x1820,0x1877,
30
// Letters for Sanskrit and Tibetan
31
START_RANGE_PAIR
,
32
0x1880,0x18AA,
33
END_OF_DATA
34
};
35
36
//
37
// Sample sentences
38
//
39
const
char
*
sentences
[]={
40
"ᠠᠡᠢᠣᠤᠥᠦᠧ"
,
41
END_OF_DATA
42
};
43
44
45
//
46
//
47
//
48
OrthographyData
data
={
49
"Mongolian"
,
// Common name
50
""
,
// Native name
51
0x1820,
// key
52
values
,
53
"ᠠᠡᠢᠣᠤᠥᠦᠧ"
,
// Sample characters
54
sentences
55
};
56
57
const
OrthographyData
*
pData
= &
data
;
58
59
};
// end of namespace
60
61
#endif
Generated by
1.8.3.1