FONTAINE
1.0
|
00001 // 00002 // Venda.h 00003 // 00004 00005 #ifndef ORTHOGRAPHY_DATA 00006 #include "../OrthographyData.h" 00007 #endif 00008 00009 #ifndef VENDA 00010 #define VENDA 00011 00012 namespace Venda{ 00013 00014 // 00015 // Unicode values 00016 // 00017 UINT32 values[]={ 00018 0x1E12, 00019 0x1E13, 00020 0x1E3C, 00021 0x1E3D, 00022 0x1E4A, 00023 0x1E4B, 00024 0x1E44, 00025 0x1E45, 00026 0x1E70, 00027 0x1E71, 00028 END_OF_DATA 00029 }; 00030 00031 // 00032 // Sample sentences 00033 // 00034 const char *sentences[]={ 00035 "Ḓ ḓ Ḽ ḽ Ṋ ṋ Ṅ ṅ Ṱ ṱ", 00036 END_OF_DATA 00037 }; 00038 00039 00040 // 00041 // 00042 // 00043 OrthographyData data={ 00044 "Venda", // Common name 00045 "Tshivenḓa", // Native name 00046 0x1E12, // key 00047 values, 00048 "Ḓ ḓ Ḽ ḽ Ṋ ṋ Ṅ ṅ Ṱ ṱ", // Sample characters 00049 sentences 00050 }; 00051 00052 const OrthographyData *pData = &data; 00053 00054 }; // end of namespace 00055 00056 #endif