1 | /*============================================================================= |
---|
2 | Boost.Wave: A Standard compliant C++ preprocessor library |
---|
3 | |
---|
4 | http://www.boost.org/ |
---|
5 | |
---|
6 | Copyright (c) 2001-2007 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) |
---|