FONTAINE  1.0
LicenseData.h
Go to the documentation of this file.
1 //
2 // The Fontaine Font Analysis Project
3 //
4 // Copyright (c) 2009 by Edward H. Trager
5 // All Rights Reserved
6 //
7 // Released under the GNU GPL version 2.0 or later.
8 //
9 
10 
11 //
12 // LicenseData
13 //
14 //
15 #ifndef LICENSE_DATA
16 #define LICENSE_DATA
17 
18 #define END_OF_LICENSE_NAMES 0x0000 // Using NULL to mark the end of a set
19 
20 #define COPYRIGHT_SUMMARY_STRING_LENGTH 256
21 
22 //
23 // LicenseData
24 //
26 
27  public:
28 
29  const char *name;
30  const char *url;
31  const char **searchKeys;
32 
33 };
34 
35 
36 #endif
const char ** searchKeys
Definition: LicenseData.h:31
Definition: LicenseData.h:25
const char * name
Definition: LicenseData.h:29
const char * url
Definition: LicenseData.h:30