FONTAINE  1.0
NewTaiLue.h
Go to the documentation of this file.
00001 //
00002 // NewTaiLue.h
00003 //
00004 
00005 #ifndef ORTHOGRAPHY_DATA
00006 #include "../OrthographyData.h"
00007 #endif
00008 
00009 #ifndef NEWTAILUE
00010 #define NEWTAILUE
00011 
00012 namespace NewTaiLue{
00013 
00014 //
00015 // Unicode values 
00016 //
00017 UINT32 values[]={
00018         START_RANGE_PAIR,
00019         0x1980,0x19A9,
00020         START_RANGE_PAIR,
00021         0x19B0,0x19C9,
00022         START_RANGE_PAIR,
00023         0x19D0,0x19D9,
00024         START_RANGE_PAIR,
00025         0x19DE,0x19DF,
00026         END_OF_DATA
00027 };
00028 
00029 //
00030 // Sample sentences
00031 // 
00032 const char *sentences[]={
00033         "ᦀᦁᦂᦃ ᦖᦰ ᦖᦱ ᦖᦲ ᦖᦳ",
00034         END_OF_DATA
00035 };
00036 
00037 
00038 //
00039 // 
00040 //
00041 OrthographyData data={
00042         "New Tai Lue", // Common name
00043         "", // Native name
00044         0x1980, // key
00045         values,
00046         "ᦀᦁᦂᦃ ᦖᦰ ᦖᦱ ᦖᦲ ᦖᦳ", // Sample characters
00047         sentences
00048 };
00049 
00050 const OrthographyData *pData = &data;
00051 
00052 }; // end of namespace
00053 
00054 #endif