FONTAINE 1.0

LatinLigatures.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 // LatinLigatures.h
00013 //
00014 
00015 #ifndef ORTHOGRAPHY_DATA
00016 #include "../OrthographyData.h"
00017 #endif
00018 
00019 #ifndef LATIN_LIGATURES
00020 #define LATIN_LIGATURES
00021 
00022 namespace LatinLigatures{
00023 
00024 //
00025 // Unicode values 
00026 //
00027 UINT32 values[]={
00028         0xFB00,
00029         0xFB01,
00030         0xFB02,
00031         0xFB03,
00032         0xFB04,
00033         0xFB05,
00034         0xFB06,
00035         END_OF_DATA
00036 };
00037 
00038 //
00039 // Sample sentences
00040 // 
00041 const char *sentences[]={
00042         "Affable financiers flowered with efficacious affluence in the ſtalwart strata.",
00043         END_OF_DATA
00044 };
00045 
00046 
00047 //
00048 // 
00049 //
00050 OrthographyData data={
00051         "Latin Ligatures",
00052         "Latin Ligatures",
00053         0xFB06, // LOWER CASE ST LIGATURE
00054         values,
00055         "ff fi fl ffi ffl ſt st",
00056         sentences
00057 };
00058 
00059 const OrthographyData *pData = &data;
00060 
00061 }; // end of namespace
00062 
00063 #endif