FONTAINE
1.0
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
Kana::pData
const OrthographyData * pData
Definition:
Kana.h:58
END_OF_DATA
#define END_OF_DATA
Definition:
OrthographyData.h:23
Kana
Definition:
Kana.h:22
Kana::values
UINT32 values[]
Definition:
Kana.h:27
Kana::data
OrthographyData data
Definition:
Kana.h:49
Kana::sentences
const char * sentences[]
Definition:
Kana.h:40
OrthographyData
Definition:
OrthographyData.h:28
UINT32
unsigned int UINT32
Definition:
OrthographyData.h:19
START_RANGE_PAIR
#define START_RANGE_PAIR
Definition:
OrthographyData.h:22
Generated by
1.8.17