1 //  license_check header  ----------------------------------------------------//
2 
3 //  Copyright Beman Dawes 2002, 2003.
4 //  Copyright Rene Rivera 2004.
5 //
6 //  Distributed under the Boost Software License, Version 1.0.
7 //  (See accompanying file LICENSE_1_0.txt or copy at
8 //  http://www.boost.org/LICENSE_1_0.txt)
9 
10 #ifndef BOOST_LICENSE_CHECK_HPP
11 #define BOOST_LICENSE_CHECK_HPP
12 
13 #include "inspector.hpp"
14 
15 namespace boost
16 {
17   namespace inspect
18   {
19     class license_check : public source_inspector
20     {
21       long m_files_with_errors;
22     public:
23 
24       license_check();
name() const25       virtual const char * name() const { return "*Lic*"; }
desc() const26       virtual const char * desc() const { return "missing Boost license info, or wrong reference text"; }
27 
28       virtual void inspect(
29         const std::string & library_name,
30         const path & full_path,
31         const std::string & contents );
32 
~license_check()33       virtual ~license_check()
34         { std::cout << "  "
35             << m_files_with_errors << " files missing Boost license info or having wrong reference text" << line_break(); }
36     };
37   }
38 }
39 
40 #endif // BOOST_LICENSE_CHECK_HPP
41