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 // Kharoshthi.h 00012 // 00013 00014 #ifndef ORTHOGRAPHY_DATA 00015 #include "../OrthographyData.h" 00016 #endif 00017 00018 #ifndef KHAROSHTHI 00019 #define KHAROSHTHI 00020 00021 namespace Kharoshthi{ 00022 00023 // 00024 // Unicode values 00025 // 00026 UINT32 values[]={ 00027 START_RANGE_PAIR, 00028 0x10A00,0x10A03, 00029 0x10A05, 00030 0x10A06, 00031 START_RANGE_PAIR, 00032 0x10A0C,0x10A13, 00033 START_RANGE_PAIR, 00034 0x10A15,0x10A17, 00035 START_RANGE_PAIR, 00036 0x10A19,0x10A33, 00037 START_RANGE_PAIR, 00038 0x10A38,0x10A3A, 00039 0x10A3F, 00040 START_RANGE_PAIR, 00041 0x10A40,0x10A47, 00042 START_RANGE_PAIR, 00043 0x10A50,0x10A58, 00044 END_OF_DATA 00045 }; 00046 00047 // 00048 // Sample sentences 00049 // 00050 const char *sentences[]={ 00051 "𐨐𐨑𐨒𐨓", 00052 END_OF_DATA 00053 }; 00054 00055 00056 // 00057 // 00058 // 00059 OrthographyData data={ 00060 "Kharoshthi", // Common name 00061 "", // Native name 00062 0x101A10, // key 00063 values, 00064 "𐨐𐨑𐨒𐨓", // Sample characters 00065 sentences 00066 }; 00067 00068 const OrthographyData *pData = &data; 00069 00070 }; // end of namespace 00071 00072 #endif