FONTAINE 1.0
CC-BY-SA.h
Go to the documentation of this file.
00001 //
00002 // The Fontaine Font Analysis Project 
00003 // 
00004 // Copyright (c) 2009 by Edward H. Trager
00005 // Copyright (c) 2010 by Dave Crossland
00006 // All Rights Reserved
00007 // 
00008 // Released under the GNU GPL version 2.0 or later.
00009 //     
00010 
00011 
00012 //
00013 // CC-BY-SA.h
00014 //
00015 
00016 #ifndef LICENSE_DATA
00017 #include "LicenseData.h"
00018 #endif
00019 
00020 #ifndef CC_BY_SA_LICENSE
00021 #define CC_BY_SA_LICENSE
00022 
00023 namespace CC_BY_SA{
00024 
00025 //
00026 // Sample sentences
00027 // 
00028 const char *fullNames[]={
00029         "Creative Commons Attribution ShareAlike",
00030         "Creative-Commons-Attribution-ShareAlike",
00031         "Creative Commons Attribution Share Alike",
00032         "Creative-Commons-Attribution-Share-Alike",
00033         "Creative Commons BY SA",
00034         "Creative-Commons-BY-SA",
00035         "CC BY SA",
00036         "CC-BY-SA",
00037         END_OF_LICENSE_NAMES
00038 };
00039 
00040 
00041 //
00042 // LicenseData
00043 //
00044 LicenseData data={
00045         "CC-BY-SA", // acronym
00046         "http://creativecommons.org/licenses/by-sa/3.0/", // url
00047         fullNames // One or more full name descriptions used for matching
00048 };
00049 
00050 const LicenseData *pData = &data;
00051 
00052 }; // end of namespace
00053 
00054 #endif