FONTAINE  1.0
XFree86.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 // MIT.h
00013 //
00014 
00015 #ifndef LICENSE_DATA
00016 #include "LicenseData.h"
00017 #endif
00018 
00019 #ifndef XFREE86_LICENSE
00020 #define XFREE86_LICENSE
00021 
00022 namespace XFree86License{
00023 
00024 //
00025 // Sample sentences
00026 // 
00027 const char *searchKeys[]={
00028         "XFree86",
00029         END_OF_LICENSE_NAMES
00030 };
00031 
00032 
00033 //
00034 // LicenseData
00035 //
00036 LicenseData data={
00037         "XFree86 License", // name
00038         "http://www.xfree86.org/legal/licenses.html", // url
00039         searchKeys // One or more full name descriptions used for matching
00040 };
00041 
00042 const LicenseData *pData = &data;
00043 
00044 }; // end of namespace
00045 
00046 #endif