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 // ExtendedArabic.h 00013 // 00014 00015 #ifndef ORTHOGRAPHY_DATA 00016 #include "../OrthographyData.h" 00017 #endif 00018 00019 #ifndef EXTENDED_ARABIC 00020 #define EXTENDED_ARABIC 00021 00022 namespace ExtendedArabic{ 00023 00024 // 00025 // Unicode values 00026 // 00027 UINT32 values[]={ 00028 START_RANGE_PAIR, 00029 0x0672,0x06d3, 00030 0x06d5, 00031 START_RANGE_PAIR, 00032 0x06f0,0x06f9, 00033 START_RANGE_PAIR, 00034 0x06fa,0x06fc, 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 "Extended Arabic", // Common name 00052 "العربية", // Native name 00053 0x0686, // ARABIC LETTER TCHEH 00054 values, 00055 "ٹ پ څ چ ږ گ ړ ۍ ژ ټ", // Sample characters 00056 sentences 00057 }; 00058 00059 const OrthographyData *pData = &data; 00060 00061 }; // end of namespace 00062 00063 #endif