FONTAINE 1.0

TaiLe.h

Go to the documentation of this file.
00001 //
00002 // TaiLe.h
00003 //
00004 
00005 #ifndef ORTHOGRAPHY_DATA
00006 #include "../OrthographyData.h"
00007 #endif
00008 
00009 #ifndef TAILE
00010 #define TAILE
00011 
00012 namespace TaiLe{
00013 
00014 //
00015 // Unicode values 
00016 //
00017 UINT32 values[]={
00018         START_RANGE_PAIR,
00019         0x1950,0x196D,
00020         START_RANGE_PAIR,
00021         0x1970,0x1974,
00022         END_OF_DATA
00023 };
00024 
00025 //
00026 // Sample sentences
00027 // 
00028 const char *sentences[]={
00029         "ᥐᥑᥒᥓ ᥣᥤᥥᥦ",
00030         END_OF_DATA
00031 };
00032 
00033 
00034 //
00035 // 
00036 //
00037 OrthographyData data={
00038         "Tai Le", // Common name
00039         "", // Native name
00040         0x1950, // key
00041         values,
00042         "ᥐᥑᥒᥓ ᥣᥤᥥᥦ", // Sample characters
00043         sentences
00044 };
00045 
00046 const OrthographyData *pData = &data;
00047 
00048 }; // end of namespace
00049 
00050 #endif