1 /*============================================================================= 2 Boost.Wave: A Standard compliant C++ preprocessor library 3 4 http://www.boost.org/ 5 6 Copyright (c) 2001-2012 Hartmut Kaiser. Distributed under the Boost 7 Software License, Version 1.0. (See accompanying file 8 LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt) 9 =============================================================================*/ 10 11 #if !defined(BOOST_CPP_HPP_920D0370_741F_44AF_BF86_F6104BDACF75_INCLUDED) 12 #define BOOST_CPP_HPP_920D0370_741F_44AF_BF86_F6104BDACF75_INCLUDED 13 14 /////////////////////////////////////////////////////////////////////////////// 15 // This file may be used as a precompiled header (if applicable) 16 17 /////////////////////////////////////////////////////////////////////////////// 18 // include often used files from the stdlib 19 #include <iosfwd> 20 #include <string> 21 #include <vector> 22 #include <algorithm> 23 #include <iterator> 24 25 /////////////////////////////////////////////////////////////////////////////// 26 // include boost config 27 #include <boost/config.hpp> // global configuration information 28 29 /////////////////////////////////////////////////////////////////////////////// 30 // build version 31 #include "cpp_version.hpp" 32 33 /////////////////////////////////////////////////////////////////////////////// 34 // configure this app here (global configuration constants) 35 #include "cpp_config.hpp" 36 37 /////////////////////////////////////////////////////////////////////////////// 38 // include required boost libraries 39 #include <boost/assert.hpp> 40 #include <boost/pool/pool_alloc.hpp> 41 42 #endif // !defined(BOOST_CPP_HPP_920D0370_741F_44AF_BF86_F6104BDACF75_INCLUDED) 43