FONTAINE  1.0
CC-BY-SA.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-SA.h
14 //
15 
16 #ifndef LICENSE_DATA
17 #include "LicenseData.h"
18 #endif
19 
20 #ifndef CC_BY_SA_LICENSE
21 #define CC_BY_SA_LICENSE
22 
23 namespace CC_BY_SA{
24 
25 //
26 // Sample sentences
27 //
28 const char *fullNames[]={
29  "Creative Commons Attribution ShareAlike",
30  "Creative-Commons-Attribution-ShareAlike",
31  "Creative Commons Attribution Share Alike",
32  "Creative-Commons-Attribution-Share-Alike",
33  "Creative Commons BY SA",
34  "Creative-Commons-BY-SA",
35  "CC BY SA",
36  "CC-BY-SA",
38 };
39 
40 
41 //
42 // LicenseData
43 //
45  "CC-BY-SA", // acronym
46  "http://creativecommons.org/licenses/by-sa/3.0/", // url
47  fullNames // One or more full name descriptions used for matching
48 };
49 
51 
52 }; // end of namespace
53 
54 #endif
const LicenseData * pData
Definition: CC-BY-SA.h:50
LicenseData data
Definition: CC-BY-SA.h:44
Definition: CC-BY-SA.h:23
Definition: LicenseData.h:25
const char * fullNames[]
Definition: CC-BY-SA.h:28
#define END_OF_LICENSE_NAMES
Definition: LicenseData.h:18