FONTAINE  1.0
LicenseData.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 // LicenseData
00013 //
00014 //
00015 #ifndef LICENSE_DATA
00016 #define LICENSE_DATA
00017 
00018 #define END_OF_LICENSE_NAMES 0x0000      // Using NULL to mark the end of a set
00019 
00020 #define COPYRIGHT_SUMMARY_STRING_LENGTH 256
00021 
00022 //
00023 // LicenseData
00024 //
00025 class LicenseData{
00026         
00027         public:
00028         
00029         const char *name;
00030         const char *url;
00031         const char **searchKeys;
00032         
00033 };
00034 
00035 
00036 #endif