|
Last change
on this file since 29 was
29,
checked in by landauf, 17 years ago
|
|
updated boost from 1_33_1 to 1_34_1
|
|
File size:
1.1 KB
|
| Line | |
|---|
| 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(); |
|---|
| 25 | virtual const char * name() const { return "*L*"; } |
|---|
| 26 | 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 | |
|---|
| 33 | virtual ~license_check() |
|---|
| 34 | { std::cout << " " |
|---|
| 35 | << m_files_with_errors << " files missing Boost license info or having wrong reference text\n"; } |
|---|
| 36 | }; |
|---|
| 37 | } |
|---|
| 38 | } |
|---|
| 39 | |
|---|
| 40 | #endif // BOOST_LICENSE_CHECK_HPP |
|---|
Note: See
TracBrowser
for help on using the repository browser.