FONTAINE 1.0

STIX.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 // Copyright (c) 2010 by Nicolas Spalinger
00006 // All Rights Reserved
00007 // 
00008 // Released under the GNU GPL version 2.0 or later.
00009 //     
00010 
00011 
00012 //
00013 // STIX.h
00014 //
00015 
00016 #ifndef LICENSE_DATA
00017 #include "LicenseData.h"
00018 #endif
00019 
00020 #ifndef STIX_LICENSE
00021 #define STIX_LICENSE
00022 
00023 namespace STIXLicense{
00024 
00025 //
00026 // Sample sentences
00027 // 
00028 // The metadata is quite similar to the new fonts released under OFL, but the small differences in date and definition allow us
00029 // to distinguish the beta under the project-specific license and the 1.0 version under OFL
00030 const char *searchKeys[]={
00031         "2007 by the STI Pub Companies",
00032         "the derivative work will carry a different name",
00033         END_OF_LICENSE_NAMES
00034 };
00035 
00036 
00037 //
00038 // LicenseData
00039 //
00040 LicenseData data={
00041         "STIX Font License (deprecated: the new version of the fonts have been released under the OFL)", // name
00042         "http://www.aip.org/stixfonts/news.html", // url
00043         searchKeys // One or more full name descriptions used for matching
00044 };
00045 
00046 const LicenseData *pData = &data;
00047 
00048 }; // end of namespace
00049 
00050 #endif