FONTAINE  1.0
Apache.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 Nicolas Spalinger
00006 // All Rights Reserved
00007 // 
00008 // Released under the GNU GPL version 2.0 or later.
00009 //     
00010 
00011 
00012 //
00013 // Apache.h
00014 //
00015 
00016 #ifndef LICENSE_DATA
00017 #include "LicenseData.h"
00018 #endif
00019 
00020 #ifndef APACHE
00021 #define APACHE
00022 
00023 namespace ApacheLicense{
00024 
00025 //
00026 // Sample sentences
00027 // 
00028 const char *searchKeys[]={
00029         "Apache",
00030         "Apache License",
00031         "Apache 2 License",
00032         END_OF_LICENSE_NAMES
00033 };
00034 
00035 
00036 //
00037 // LicenseData
00038 //
00039 LicenseData data={
00040         "Apache 2.0", // name
00041         "http://www.apache.org/licenses/LICENSE-2.0", // url
00042         searchKeys // One or more full name descriptions used for matching
00043 };
00044 
00045 const LicenseData *pData = &data;
00046 
00047 }; // end of namespace
00048 
00049 #endif