summaryrefslogtreecommitdiffstats
blob: e4ced2572a64af8b9945d92a56f6884d5ad568f1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/*
 *
 * Copyright (c) 2003 Dr John Maddock
 * Use, modification and distribution is subject to the 
 * Boost Software License, Version 1.0. (See accompanying file 
 * LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
 *
 */

#include <boost/regex.hpp>
#include <utility>

struct license_info
{
   boost::regex license_signature;
   boost::regex copyright_signature;
   std::string  copyright_formatter;
   std::string  license_name;
   std::string  license_text;
   //
   // we should really be able to initialize license_info as an
   // aggregate, but some compilers reject this, so use a constructor
   //instead:
   //
   license_info(const boost::regex& e1, 
            const boost::regex& e2, 
            const std::string& s1, 
            const std::string& s2, 
            const std::string& s3)
            : license_signature(e1), 
              copyright_signature(e2),
              copyright_formatter(s1),
              license_name(s2),
              license_text(s3){}
};

std::pair<const license_info*, int> get_licenses();

std::string format_authors_name(const std::string& name);