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 // WesternEuropean.h 00013 // 00014 00015 #ifndef ORTHOGRAPHY_DATA 00016 #include "../OrthographyData.h" 00017 #endif 00018 00019 #ifndef WESTERN_EUROPEAN 00020 #define WESTERN_EUROPEAN 00021 00022 namespace WesternEuropean{ 00023 00024 // 00025 // Unicode values 00026 // 00027 UINT32 values[]={ 00028 START_RANGE_PAIR, 00029 0x00C0,0x00CF, // Western Latin 00030 START_RANGE_PAIR, 00031 0x00D0,0x00D6, // Western Latin 00032 START_RANGE_PAIR, 00033 0x00D8,0x00DF, // Western Latin 00034 START_RANGE_PAIR, 00035 0x00E0,0x00EF, // Western Latin 00036 START_RANGE_PAIR, 00037 0x00F0,0x00F6, // Western Latin 00038 START_RANGE_PAIR, 00039 0x00F8,0x00FF, // Western Latin 00040 END_OF_DATA 00041 }; 00042 00043 // 00044 // Sample sentences 00045 // 00046 const char *sentences[]={ 00047 "Falsches Üben von Xylophonmusik quält jeden größeren Zwerg.", 00048 "Vår sære Zulu fra badeøya spilte jo whist og quickstep i min taxi.", 00049 END_OF_DATA 00050 }; 00051 00052 00053 // 00054 // 00055 // 00056 OrthographyData data={ 00057 "Western European", 00058 "Western European", 00059 0x00C0, // LATIN CAPITAL LETTER A WITH GRAVE 00060 values, 00061 "ÁàåÇçæÐðéîñöœßþÿ", 00062 sentences 00063 }; 00064 00065 const OrthographyData *pData = &data; 00066 00067 }; // end of namespace 00068 00069 #endif