FONTAINE
1.0
Main Page
Namespaces
Classes
Files
File List
File Members
src
orthographies
Glagolitic.h
Go to the documentation of this file.
1
//
2
// The Fontaine Font Analysis Project
3
//
4
// Copyright (c) 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
// Glagolitic.h
12
//
13
14
#ifndef ORTHOGRAPHY_DATA
15
#include "../OrthographyData.h"
16
#endif
17
18
#ifndef GLAGOLITIC
19
#define GLAGOLITIC
20
21
namespace
Glagolitic{
22
23
//
24
// Unicode values
25
//
26
UINT32
values
[]={
27
// Capital letters:
28
START_RANGE_PAIR
,
29
0x2C00,0x2C2E,
30
// Small letters:
31
START_RANGE_PAIR
,
32
0x2C30,0x2C5E,
33
END_OF_DATA
34
};
35
36
//
37
// Sample sentences
38
//
39
const
char
*
sentences
[]={
40
// From http://www.obshtezhitie.net/texts/bgf/uni/bgf.html:
41
" ⰰⰴⱏⰻⰽⱁ ⱍ̅ⰽ҃ⱏ ⱄⰻ ⱈⱁⱋⰵⱅⱏ ⱃⰰⰸ[ⱁⱃⰻⱅ] "
,
42
END_OF_DATA
43
};
44
45
46
//
47
//
48
//
49
OrthographyData
data
={
50
"Glagolitic"
,
// Common name
51
"hlaholika"
,
// Native name
52
0x2C00,
// key
53
values
,
54
" ⰰⰴⱏⰻⰽⱁ"
,
// Sample characters
55
sentences
56
};
57
58
const
OrthographyData
*
pData
= &
data
;
59
60
};
// end of namespace
61
62
#endif
Generated by
1.8.3.1