list_includes.hpp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /*=============================================================================
  2. Boost.Wave: A Standard compliant C++ preprocessor library
  3. Sample: List include dependencies of a given source file
  4. Configuration data
  5. http://www.boost.org/
  6. Copyright (c) 2001-2010 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. #if !defined(LIST_INCLUDES_HPP_843DB412_3AA8_4BCF_8081_AA4A5FDE0BE7_INCLUDED)
  11. #define LIST_INCLUDES_HPP_843DB412_3AA8_4BCF_8081_AA4A5FDE0BE7_INCLUDED
  12. ///////////////////////////////////////////////////////////////////////////////
  13. // include often used files from the stdlib
  14. #include <iostream>
  15. #include <fstream>
  16. #include <string>
  17. #include <vector>
  18. #include <set>
  19. ///////////////////////////////////////////////////////////////////////////////
  20. // include boost config
  21. #include <boost/config.hpp> // global configuration information
  22. ///////////////////////////////////////////////////////////////////////////////
  23. // build version
  24. #include "list_includes_version.hpp"
  25. ///////////////////////////////////////////////////////////////////////////////
  26. // configure this app here (global configuration constants)
  27. #include "list_includes_config.hpp"
  28. ///////////////////////////////////////////////////////////////////////////////
  29. // include required boost libraries
  30. #include <boost/assert.hpp>
  31. #include <boost/pool/pool_alloc.hpp>
  32. #endif // !defined(LIST_INCLUDES_HPP_843DB412_3AA8_4BCF_8081_AA4A5FDE0BE7_INCLUDED)