FONTAINE
1.0
Main Page
Namespaces
Classes
Files
File List
File Members
src
orthographies
Kana.h
Go to the documentation of this file.
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
// Kana.h
13
//
14
15
#ifndef ORTHOGRAPHY_DATA
16
#include "../OrthographyData.h"
17
#endif
18
19
#ifndef KANA
20
#define KANA
21
22
namespace
Kana{
23
24
//
25
// Unicode values
26
//
27
UINT32
values
[]={
28
START_RANGE_PAIR
,
29
0x3041,0x3094,
30
START_RANGE_PAIR
,
31
0x3099,0x309e,
32
START_RANGE_PAIR
,
33
0x30A1,0x30FE,
34
END_OF_DATA
35
};
36
37
//
38
// Sample sentences
39
//
40
const
char
*
sentences
[]={
41
"いろはにほへと ちりぬるを わかよたれそ つねならむ うゐのおくやま けふこえて あさきゆめみし ゑひもせす"
,
42
END_OF_DATA
43
};
44
45
46
//
47
//
48
//
49
OrthographyData
data
={
50
"Japanese Kana"
,
51
"仮名"
,
52
0x3042,
// HIRAGANA LETTER A
53
values
,
54
"いろはにほへと"
,
55
sentences
56
};
57
58
const
OrthographyData
*
pData
= &
data
;
59
60
};
// end of namespace
61
62
#endif
Generated by
1.8.4