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 // Cham.h 00012 // 00013 00014 #ifndef ORTHOGRAPHY_DATA 00015 #include "../OrthographyData.h" 00016 #endif 00017 00018 #ifndef CHAM 00019 #define CHAM 00020 00021 namespace Cham{ 00022 00023 // 00024 // Unicode values 00025 // 00026 UINT32 values[]={ 00027 START_RANGE_PAIR, 00028 0xAA00,0xAA36, 00029 START_RANGE_PAIR, 00030 0xAA40,0xAA4D, 00031 START_RANGE_PAIR, 00032 0xAA50,0xAA59, 00033 START_RANGE_PAIR, 00034 0xAA5C,0xAA5F, 00035 END_OF_DATA 00036 }; 00037 00038 // 00039 // Sample sentences 00040 // 00041 const char *sentences[]={ 00042 "ꨀꨁꨂꨃꨄꨅꨆꨇꨉ", 00043 END_OF_DATA 00044 }; 00045 00046 00047 // 00048 // 00049 // 00050 OrthographyData data={ 00051 "Cham", // Common name 00052 "", // Native name 00053 0xAA00, // key 00054 values, 00055 "ꨀꨁꨂꨃꨄꨅꨆꨇꨉ", // Sample characters 00056 sentences 00057 }; 00058 00059 const OrthographyData *pData = &data; 00060 00061 }; // end of namespace 00062 00063 #endif