FONTAINE
1.0
|
00001 // 00002 // The Fontaine Font Analysis Project 00003 // 00004 // Copyright (c) 2009, 2011 by Edward H. Trager 00005 // All Rights Reserved 00006 // 00007 // Released under the GNU GPL version 2.0 or later. 00008 // 00009 00010 // 00011 // Limbu.h 00012 // 00013 00014 #ifndef ORTHOGRAPHY_DATA 00015 #include "../OrthographyData.h" 00016 #endif 00017 00018 #ifndef LIMBU 00019 #define LIMBU 00020 00021 namespace Limbu{ 00022 00023 // 00024 // Unicode values 00025 // 00026 UINT32 values[]={ 00027 START_RANGE_PAIR, 00028 0x1900,0x191C, 00029 START_RANGE_PAIR, 00030 0x1920,0x192B, 00031 START_RANGE_PAIR, 00032 0x1930,0x193B, 00033 0x1940, 00034 START_RANGE_PAIR, 00035 0x1944,0x194F, 00036 END_OF_DATA 00037 }; 00038 00039 // 00040 // Sample sentences 00041 // 00042 const char *sentences[]={ 00043 "ᤁᤂᤃ", 00044 END_OF_DATA 00045 }; 00046 00047 00048 // 00049 // 00050 // 00051 OrthographyData data={ 00052 "Limbu", // Common name 00053 "", // Native name 00054 0x1901, // key 00055 values, 00056 "ᤁᤂᤃ", // Sample characters 00057 sentences 00058 }; 00059 00060 const OrthographyData *pData = &data; 00061 00062 }; // end of namespace 00063 00064 #endif