]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/wave/samples/list_includes/list_includes.hpp
import quincy beta 17.1.0
[ceph.git] / ceph / src / boost / libs / wave / samples / list_includes / list_includes.hpp
CommitLineData
7c673cae
FG
1/*=============================================================================
2 Boost.Wave: A Standard compliant C++ preprocessor library
3
4 Sample: List include dependencies of a given source file
5 Configuration data
6
7 http://www.boost.org/
8
9 Copyright (c) 2001-2010 Hartmut Kaiser. Distributed under the Boost
10 Software License, Version 1.0. (See accompanying file
11 LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
12=============================================================================*/
13
20effc67
TL
14#if !defined(BOOST_LIST_INCLUDES_HPP_843DB412_3AA8_4BCF_8081_AA4A5FDE0BE7_INCLUDED)
15#define BOOST_LIST_INCLUDES_HPP_843DB412_3AA8_4BCF_8081_AA4A5FDE0BE7_INCLUDED
7c673cae
FG
16
17///////////////////////////////////////////////////////////////////////////////
18// include often used files from the stdlib
20effc67 19#include <iosfwd>
7c673cae
FG
20#include <fstream>
21#include <string>
22#include <vector>
23#include <set>
24
25///////////////////////////////////////////////////////////////////////////////
26// include boost config
27#include <boost/config.hpp> // global configuration information
28
29///////////////////////////////////////////////////////////////////////////////
30// build version
31#include "list_includes_version.hpp"
32
33///////////////////////////////////////////////////////////////////////////////
34// configure this app here (global configuration constants)
35#include "list_includes_config.hpp"
36
37///////////////////////////////////////////////////////////////////////////////
38// include required boost libraries
39#include <boost/assert.hpp>
40#include <boost/pool/pool_alloc.hpp>
41
20effc67 42#endif // !defined(BOOST_LIST_INCLUDES_HPP_843DB412_3AA8_4BCF_8081_AA4A5FDE0BE7_INCLUDED)