FONTAINE 1.0

Turkish.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 // turkish.h
00013 //
00014 
00015 #ifndef ORTHOGRAPHY_DATA
00016 #include "../OrthographyData.h"
00017 #endif
00018 
00019 #ifndef TURKISH
00020 #define TURKISH
00021 
00022 namespace Turkish{
00023 
00024 //
00025 // Unicode values 
00026 //
00027 UINT32 values[]={
00028         0x00C2,
00029         0x00E2,
00030         0x00C7,
00031         0x00E7,
00032         0x011E,
00033         0x011F,
00034         0x00CE,
00035         0x00EE,
00036         0x0130,
00037         0x0131,
00038         0x00D6,
00039         0x00F6,
00040         0x015E,
00041         0x015F,
00042         0x00DB,
00043         0x00FB,
00044         0x00DC,
00045         0x00FC,
00046         END_OF_DATA
00047 };
00048 
00049 //
00050 // Sample sentences
00051 // 
00052 const char *sentences[]={
00053         "Pijamalı hasta, yağız şoföre çabucak güvendi.",
00054         END_OF_DATA
00055 };
00056 
00057 
00058 //
00059 // 
00060 //
00061 OrthographyData data={
00062         "Turkish",
00063         "Türkçe",
00064         0x0130, // 
00065         values,
00066         "ÂâÇçĞğİıÖöŞşÛû",
00067         sentences
00068 };
00069 
00070 const OrthographyData *pData = &data;
00071 
00072 }; // end of namespace
00073 
00074 #endif