FONTAINE  1.0
CC-ZERO.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-ZERO.h
14 //
15 
16 #ifndef LICENSE_DATA
17 #include "LicenseData.h"
18 #endif
19 
20 #ifndef CC_ZERO_LICENSE
21 #define CC_ZERO_LICENSE
22 
23 namespace CC_ZERO{
24 
25 //
26 // Sample sentences
27 //
28 const char *fullNames[]={
29  "Creative Commons Zero",
30  "Creative-Commons-Zero",
31  "Creative Commons 0",
32  "Creative-Commons-0",
33  "CC Zero",
34  "CC-Zero",
35  "CC 0",
36  "CC-0",
38 };
39 
40 
41 //
42 // LicenseData
43 //
45  "CC-0", // acronym
46  "http://creativecommons.org/publicdomain/zero/1.0/", // url
47  fullNames // One or more full name descriptions used for matching
48 };
49 
51 
52 }; // end of namespace
53 
54 #endif