Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
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
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