FONTAINE
1.0
Main Page
Namespaces
Classes
Files
File List
File Members
src
orthographies
ClaudianLetters.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
// ClaudianLetters.h
13
//
14
15
#ifndef ORTHOGRAPHY_DATA
16
#include "../OrthographyData.h"
17
#endif
18
19
#ifndef CLAUDIAN_LETTERS
20
#define CLAUDIAN_LETTERS
21
22
namespace
ClaudianLetters{
23
24
//
25
// Unicode values
26
//
27
UINT32
values
[]={
28
0x2132,
29
0x214E,
30
0x2183,
31
0x2184,
32
0x2C75,
33
0x2C76,
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
"Claudian Letters"
,
51
"Claudian Letters"
,
52
0x2183,
// CLAUDIAN LETTER
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