FONTAINE  1.0
Jamo.h
Go to the documentation of this file.
1 //
2 // The Fontaine Font Analysis Project
3 //
4 // Copyright (c) 2009, 2011 by Edward H. Trager
5 // All Rights Reserved
6 //
7 // Released under the GNU GPL version 2.0 or later.
8 //
9 
10 //
11 // Jamo.h
12 //
13 
14 #ifndef ORTHOGRAPHY_DATA
15 #include "../OrthographyData.h"
16 #endif
17 
18 #ifndef JAMO
19 #define JAMO
20 
21 namespace Jamo{
22 
23 //
24 // Unicode values
25 //
27  // Typographic Jamo range:
29  0x1100,0x11FF,
30  // Compatability Jamo used when typing in an IME:
32  0x3131,0x318E,
34 };
35 
36 //
37 // Sample sentences
38 //
39 const char *sentences[]={
40  "ㄱㄲㄳㄴㄵㄶㄷㄸㄹㄺ",
42 };
43 
44 
45 //
46 //
47 //
49  "Korean Jamo", // Common name
50  "자모", // Native name
51  0x3131, // key
52  values,
53  "ㄱㄲㄳㄴㄵㄶㄷㄸㄹㄺ", // Sample characters
54  sentences
55 };
56 
58 
59 }; // end of namespace
60 
61 #endif