FONTAINE 1.0
Kannada.h
Go to the documentation of this file.
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 // Kannada.h
00013 //
00014 
00015 #ifndef ORTHOGRAPHY_DATA
00016 #include "../OrthographyData.h"
00017 #endif
00018 
00019 #ifndef KANNADA
00020 #define KANNADA
00021 
00022 namespace Kannada{
00023 
00024 //
00025 // Unicode values 
00026 //
00027 UINT32 values[]={
00028         START_RANGE_PAIR,
00029         0x0c82,0x0c83,
00030         START_RANGE_PAIR,
00031         0x0c85,0x0c8c,
00032         START_RANGE_PAIR,
00033         0x0c8e,0x0c90,
00034         START_RANGE_PAIR,
00035         0x0c92,0x0ca8,
00036         START_RANGE_PAIR,
00037         0x0caa,0x0cb3,
00038         START_RANGE_PAIR,
00039         0x0cb5,0x0cb9,
00040         START_RANGE_PAIR,
00041         0x0cbe,0x0cc4,
00042         START_RANGE_PAIR,
00043         0x0cc6,0x0cc8,
00044         START_RANGE_PAIR,
00045         0x0cca,0x0ccd,
00046         START_RANGE_PAIR,
00047         0x0cd5,0x0cd6,
00048         0x0cde,
00049         START_RANGE_PAIR,
00050         0x0ce0,0x0ce1,
00051         START_RANGE_PAIR,
00052         0x0ce6,0x0cef,
00053         END_OF_DATA
00054 };
00055 
00056 //
00057 // Sample sentences
00058 // 
00059 const char *sentences[]={
00060         "ಹೂವಿನ ಜೊತೆ ನಾರು ಸ್ವರ್ಗ ಸೇರಿಥು.",
00061         END_OF_DATA
00062 };
00063 
00064 
00065 //
00066 // 
00067 //
00068 OrthographyData data={
00069         "Kannada", // Common name
00070         "ಕನ್ನಡ", // Native name
00071         0x0cb9, // ಹ
00072         values,
00073         "ವ ಶ ಷ ಸ ಹ ಒ ಓ ಔ ಕ ಖ ಗ", // Sample characters
00074         sentences
00075 };
00076 
00077 const OrthographyData *pData = &data;
00078 
00079 }; // end of namespace
00080 
00081 #endif