cpp.hpp 1.6 KB

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