FONTAINE  1.0
Hanunoo.h
Go to the documentation of this file.
00001 //
00002 // Hanunoo.h
00003 //
00004 
00005 #ifndef ORTHOGRAPHY_DATA
00006 #include "../OrthographyData.h"
00007 #endif
00008 
00009 #ifndef HANUNOO
00010 #define HANUNOO
00011 
00012 namespace Hanunoo{
00013 
00014 //
00015 // Unicode values 
00016 //
00017 UINT32 values[]={
00018         // Hanunoo - Independent vowels
00019         0x1720, // ( ᜠ ) HANUNOO LETTER A
00020         0x1721, // ( ᜡ ) HANUNOO LETTER I
00021         0x1722, // ( ᜢ ) HANUNOO LETTER U
00022         // Hanunoo - Consonants
00023         0x1723, // ( ᜣ ) HANUNOO LETTER KA
00024         0x1724, // ( ᜤ ) HANUNOO LETTER GA
00025         0x1725, // ( ᜥ ) HANUNOO LETTER NGA
00026         0x1726, // ( ᜦ ) HANUNOO LETTER TA
00027         0x1727, // ( ᜧ ) HANUNOO LETTER DA
00028         0x1728, // ( ᜨ ) HANUNOO LETTER NA
00029         0x1729, // ( ᜩ ) HANUNOO LETTER PA
00030         0x172A, // ( ᜪ ) HANUNOO LETTER BA
00031         0x172B, // ( ᜫ ) HANUNOO LETTER MA
00032         0x172C, // ( ᜬ ) HANUNOO LETTER YA
00033         0x172D, // ( ᜭ ) HANUNOO LETTER RA
00034         0x172E, // ( ᜮ ) HANUNOO LETTER LA
00035         0x172F, // ( ᜯ ) HANUNOO LETTER WA
00036         0x1730, // ( ᜰ ) HANUNOO LETTER SA
00037         0x1731, // ( ᜱ ) HANUNOO LETTER HA
00038         // Hanunoo - Dependent vowel signs
00039         0x1732, // ( ᜲ ) HANUNOO VOWEL SIGN I
00040         0x1733, // ( ᜳ ) HANUNOO VOWEL SIGN U
00041         // Hanunoo - Virama
00042         0x1734, // ( ᜴ ) HANUNOO SIGN PAMUDPOD
00043         END_OF_DATA
00044 };
00045 
00046 //
00047 // Sample sentences
00048 // 
00049 const char *sentences[]={
00050         "ᜣ ᜤ ᜥ ᜦ ᜧ ᜨ ᜩ ᜪ", // Using sample characters for now ...
00051         END_OF_DATA
00052 };
00053 
00054 
00055 //
00056 // 
00057 //
00058 OrthographyData data={
00059         "Hanunó'o", // Common name
00060         "", // Native name
00061         0x1723, // key: LETTER KA
00062         values,
00063         "ᜣ ᜤ ᜥ ᜦ ᜧ ᜨ ᜩ ᜪ", // Sample characters
00064         sentences
00065 };
00066 
00067 const OrthographyData *pData = &data;
00068 
00069 }; // end of namespace
00070 
00071 #endif