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 // Lao.h 00013 // 00014 00015 #ifndef ORTHOGRAPHY_DATA 00016 #include "../OrthographyData.h" 00017 #endif 00018 00019 #ifndef LAO 00020 #define LAO 00021 00022 namespace Lao{ 00023 00024 // 00025 // Unicode values 00026 // 00027 UINT32 values[]={ 00028 0x0e81, 00029 0x0e82, 00030 0x0e84, 00031 0x0e87, 00032 0x0e88, 00033 0x0e8a, 00034 0x0e8d, 00035 START_RANGE_PAIR, 00036 0x0e94,0x0e97, 00037 START_RANGE_PAIR, 00038 0x0e99,0x0e9f, 00039 0x0ea1, 00040 0x0ea2, 00041 0x0ea3, 00042 0x0ea5, 00043 0x0ea7, 00044 0x0eaa, 00045 0x0eab, 00046 START_RANGE_PAIR, 00047 0x0ead,0x0eb9, 00048 0x0ebb, 00049 0x0ebc, 00050 0x0ebd, 00051 START_RANGE_PAIR, 00052 0x0ec0,0x0ec4, 00053 0x0ec6, 00054 START_RANGE_PAIR, 00055 0x0ec8,0x0ecd, 00056 START_RANGE_PAIR, 00057 0x0ed0,0x0ed9, 00058 0x0edc, 00059 0x0edd, 00060 END_OF_DATA 00061 }; 00062 00063 // 00064 // Sample sentences 00065 // 00066 const char *sentences[]={ 00067 "ຂອບໃຈຫຼາຍໆເດີ", 00068 END_OF_DATA 00069 }; 00070 00071 00072 // 00073 // 00074 // 00075 OrthographyData data={ 00076 "Lao", // Common name 00077 "ພາສາລາວ", // Native name 00078 0x0e81, // LAO LETTER KO 00079 values, 00080 "ກຂຄງຈຊຍດ", // Sample characters 00081 sentences 00082 }; 00083 00084 const OrthographyData *pData = &data; 00085 00086 }; // end of namespace 00087 00088 #endif