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 // Armenian.h 00013 // 00014 00015 #ifndef ORTHOGRAPHY_DATA 00016 #include "../OrthographyData.h" 00017 #endif 00018 00019 #ifndef ARMENIAN 00020 #define ARMENIAN 00021 00022 namespace Armenian{ 00023 00024 // 00025 // Unicode values 00026 // 00027 UINT32 values[]={ 00028 START_RANGE_PAIR, 00029 0x0531,0x0556, 00030 START_RANGE_PAIR, 00031 0x0559,0x055f, 00032 START_RANGE_PAIR, 00033 0x0561,0x0587, 00034 0x589,0x58a, 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 "Armenian", // Common name 00052 "Հայերեն", // Native name 00053 0x0561, // ARMENIAN SMALL LETTER AYB 00054 values, 00055 "ԱաԲբԳգԴդ", // Sample characters 00056 sentences 00057 }; 00058 00059 const OrthographyData *pData = &data; 00060 00061 }; // end of namespace 00062 00063 #endif