FONTAINE
1.0
|
00001 // 00002 // The Fontaine Font Analysis Project 00003 // 00004 // Copyright (c) 2009 by Edward H. Trager 00005 // All Rights Reserved 00006 // 00007 // Released under the GNU GPL version 2.0 or later. 00008 // 00009 00010 00011 // 00012 // Baltic.h 00013 // 00014 00015 #ifndef ORTHOGRAPHY_DATA 00016 #include "../OrthographyData.h" 00017 #endif 00018 00019 #ifndef BALTIC 00020 #define BALTIC 00021 00022 namespace Baltic{ 00023 00024 // 00025 // Unicode values 00026 // 00027 UINT32 values[]={ 00028 0x0100, 00029 0x0101, 00030 0x0104, 00031 0x0105, 00032 0x010C, 00033 0x010D, 00034 0x0112, 00035 0x0113, 00036 0x0116, 00037 0x0117, 00038 0x0118, 00039 0x0119, 00040 0x0122, 00041 0x0123, 00042 0x012A, 00043 0x012B, 00044 0x012E, 00045 0x012F, 00046 0x0136, 00047 0x0137, 00048 0x013B, 00049 0x013C, 00050 0x0145, 00051 0x0146, 00052 0x0160, 00053 0x0161, 00054 0x016A, 00055 0x016B, 00056 0x017D, 00057 0x017E, 00058 0x014C, 00059 0x014D, 00060 0x0156, 00061 0x0157, 00062 0x016A, 00063 0x016B, 00064 0x0172, 00065 0x0173, 00066 0x017D, 00067 0x017E, 00068 END_OF_DATA 00069 }; 00070 00071 // 00072 // Sample sentences 00073 // 00074 const char *sentences[]={ 00075 "Įlinkdama fechtuotojo špaga sublykčiojusi pragręžė apvalų arbūzą.", 00076 "Sarkanās jūrascūciņas peld pa jūru.", 00077 END_OF_DATA 00078 }; 00079 00080 00081 // 00082 // 00083 // 00084 OrthographyData data={ 00085 "Baltic", 00086 "Baltic", 00087 0x0136, // LATIN CAPITAL LETTER K WITH CEDILLA 00088 values, 00089 "ĀāĄąčĖęīĶļŅšž", 00090 sentences 00091 }; 00092 00093 const OrthographyData *pData = &data; 00094 00095 }; // end of namespace 00096 00097 #endif