00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016 #ifndef LICENSE_DATA
00017 #include "LicenseData.h"
00018 #endif
00019
00020 #ifndef APACHE
00021 #define APACHE
00022
00023 namespace ApacheLicense{
00024
00025
00026
00027
00028 const char *searchKeys[]={
00029 "Apache License",
00030 END_OF_LICENSE_NAMES
00031 };
00032
00033
00034
00035
00036
00037 LicenseData data={
00038 "Apache 2.0",
00039 "http://www.apache.org/licenses/LICENSE-2.0",
00040 searchKeys
00041 };
00042
00043 const LicenseData *pData = &data;
00044
00045 };
00046
00047 #endif