FONTAINE  1.0
CC-BY.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 // Copyright (c) 2010 by Dave Crossland
6 // All Rights Reserved
7 //
8 // Released under the GNU GPL version 2.0 or later.
9 //
10 
11 
12 //
13 // CC-BY.h
14 //
15 
16 #ifndef LICENSE_DATA
17 #include "LicenseData.h"
18 #endif
19 
20 #ifndef CC_BY_LICENSE
21 #define CC_BY_LICENSE
22 
23 namespace CC_BY{
24 
25 //
26 // Sample sentences
27 //
28 const char *fullNames[]={
29  "Creative Commons Attribution",
30  "Creative-Commons-Attribution",
31  "CC BY",
32  "CC-BY",
34 };
35 
36 
37 //
38 // LicenseData
39 //
41  "CC-BY", // acronym
42  "http://creativecommons.org/licenses/by/3.0/", // url
43  fullNames // One or more full name descriptions used for matching
44 };
45 
47 
48 }; // end of namespace
49 
50 #endif
const char * fullNames[]
Definition: CC-BY.h:28
LicenseData data
Definition: CC-BY.h:40
const LicenseData * pData
Definition: CC-BY.h:46
Definition: LicenseData.h:25
#define END_OF_LICENSE_NAMES
Definition: LicenseData.h:18