Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/tools/wave/cpp.hpp @ 26

Last change on this file since 26 was 12, checked in by landauf, 17 years ago

added boost

File size: 1.7 KB
Line 
1/*=============================================================================
2    Boost.Wave: A Standard compliant C++ preprocessor library
3
4    http://www.boost.org/
5
6    Copyright (c) 2001-2005 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(CPP_HPP_920D0370_741F_44AF_BF86_F6104BDACF75_INCLUDED)
12#define 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 <iostream>
20#include <fstream>
21#include <string>
22#include <vector>
23#include <algorithm>
24#include <iterator>
25
26///////////////////////////////////////////////////////////////////////////////
27//  include boost config
28#include <boost/config.hpp>     //  global configuration information
29
30///////////////////////////////////////////////////////////////////////////////
31//  build version
32#include "cpp_version.hpp"
33
34///////////////////////////////////////////////////////////////////////////////
35//  configure this app here (global configuration constants)
36#include "cpp_config.hpp"
37
38///////////////////////////////////////////////////////////////////////////////
39//  include required boost libraries
40#include <boost/assert.hpp>
41#include <boost/pool/pool_alloc.hpp>
42
43#endif // !defined(CPP_HPP_920D0370_741F_44AF_BF86_F6104BDACF75_INCLUDED)
Note: See TracBrowser for help on using the repository browser.