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 CC_ZERO_LICENSE
00021 #define CC_ZERO_LICENSE
00022
00023 namespace CC_ZERO{
00024
00025
00026
00027
00028 const char *fullNames[]={
00029 "Creative Commons Zero",
00030 "Creative-Commons-Zero",
00031 "Creative Commons 0",
00032 "Creative-Commons-0",
00033 "CC Zero",
00034 "CC-Zero",
00035 "CC 0",
00036 "CC-0",
00037 END_OF_LICENSE_NAMES
00038 };
00039
00040
00041
00042
00043
00044 LicenseData data={
00045 "CC-0",
00046 "http://creativecommons.org/publicdomain/zero/1.0/",
00047 fullNames
00048 };
00049
00050 const LicenseData *pData = &data;
00051
00052 };
00053
00054 #endif