• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*=============================================================================
2     Boost.Wave: A Standard compliant C++ preprocessor library
3 
4     Sample: Collect token statistics from the analysed files
5 
6     http://www.boost.org/
7 
8     Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost
9     Software License, Version 1.0. (See accompanying file
10     LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
11 =============================================================================*/
12 
13 #if !defined(BOOST_TOKEN_STATISTICS_VERSION_HPP)
14 #define BOOST_TOKEN_STATISTICS_VERSION_HPP
15 
16 #define TOKEN_STATISTICS_VERSION_MAJOR           0
17 #define TOKEN_STATISTICS_VERSION_MINOR           1
18 #define TOKEN_STATISTICS_VERSION_SUBMINOR        0
19 
20 #endif // !defined(BOOST_TOKEN_STATISTICS_VERSION_HPP)
21