FONTAINE 1.0
Catalan.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 // Catalan.h
00013 //
00014 
00015 #ifndef ORTHOGRAPHY_DATA
00016 #include "../OrthographyData.h"
00017 #endif
00018 
00019 #ifndef CATALAN
00020 #define CATALAN
00021 
00022 namespace Catalan{
00023 
00024 //
00025 // Unicode values 
00026 //
00027 UINT32 values[]={
00028         0x00C0,
00029         0x00E0,
00030         0x00C7,
00031         0x00E7,
00032         0x00C8,
00033         0x00E8,
00034         0x00C9,
00035         0x00E9,
00036         0x00CD,
00037         0x00ED,
00038         0x00CF,
00039         0x00EF,
00040         0x013F,
00041         0x0140,
00042         0x00D2,
00043         0x00F2,
00044         0x00D3,
00045         0x00F3,
00046         0x00DA,
00047         0x00FA,
00048         0x00DC,
00049         0x00FC,
00050         0x00D1,
00051         0x00F1,
00052         END_OF_DATA
00053 };
00054 
00055 //
00056 // Sample sentences
00057 // 
00058 const char *sentences[]={
00059         "Aqueix betzol, Jan, comprava whisky de figa.",
00060         END_OF_DATA
00061 };
00062 
00063 
00064 //
00065 // 
00066 //
00067 OrthographyData data={
00068         "Catalan",
00069         "Català",
00070         0x013F, // LATIN CAPITAL LETTER L WITH MIDDLE DOT
00071         values,
00072         "ÀàÇçÉéÍíĿŀÚúÑñ",
00073         sentences
00074 };
00075 
00076 const OrthographyData *pData = &data;
00077 
00078 }; // end of namespace
00079 
00080 #endif