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 // Sindhi.h 00013 // 00014 00015 #ifndef ORTHOGRAPHY_DATA 00016 #include "../OrthographyData.h" 00017 #endif 00018 00019 #ifndef SINDHI 00020 #define SINDHI 00021 00022 namespace Sindhi{ 00023 00024 // 00025 // Unicode values 00026 // 00027 UINT32 values[]={ 00028 0x067a, 00029 0x067b, 00030 0x067d, 00031 0x067e, 00032 0x067f, 00033 0x0680, 00034 0x0683, 00035 0x0684, 00036 0x0686, 00037 0x0687, 00038 0x068a, 00039 0x068c, 00040 0x068d, 00041 0x068e, 00042 0x068f, 00043 0x0699, 00044 0x06a6, 00045 0x06af, 00046 0x06b1, 00047 0x06b2, 00048 0x06b3, 00049 0x06b4, 00050 0x06bb, 00051 0x06cd, 00052 0x06d0, 00053 0x06fd, 00054 0x06fe, 00055 END_OF_DATA 00056 }; 00057 00058 // 00059 // Sample sentences 00060 // 00061 const char *sentences[]={ 00062 "", 00063 END_OF_DATA 00064 }; 00065 00066 00067 // 00068 // 00069 // 00070 OrthographyData data={ 00071 "Sindhi", // Common name 00072 "سنڌي", // Native name 00073 0x067a, // ARABIC LETTER TTEHEH (TEH w/ 2 vertical dots) 00074 values, 00075 "ٺ ٻ ٽ ٿ ڀ ڃ ڄ ڇ", // Sample characters 00076 sentences 00077 }; 00078 00079 const OrthographyData *pData = &data; 00080 00081 }; // end of namespace 00082 00083 #endif