std_fwd.hpp 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2014-2014. Distributed under the Boost
  4. // Software License, Version 1.0. (See accompanying file
  5. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  6. //
  7. // See http://www.boost.org/libs/container for documentation.
  8. //
  9. //////////////////////////////////////////////////////////////////////////////
  10. #ifndef BOOST_CONTAINER_DETAIL_STD_FWD_HPP
  11. #define BOOST_CONTAINER_DETAIL_STD_FWD_HPP
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #if defined(BOOST_HAS_PRAGMA_ONCE)
  16. # pragma once
  17. #endif
  18. //////////////////////////////////////////////////////////////////////////////
  19. // Standard predeclarations
  20. //////////////////////////////////////////////////////////////////////////////
  21. #include <cstddef>
  22. #include <boost/move/detail/std_ns_begin.hpp>
  23. BOOST_MOVE_STD_NS_BEG
  24. template<class T>
  25. class allocator;
  26. template<class T>
  27. struct less;
  28. template<class T>
  29. struct equal_to;
  30. template<class T1, class T2>
  31. struct pair;
  32. template<class T>
  33. struct char_traits;
  34. struct input_iterator_tag;
  35. struct forward_iterator_tag;
  36. struct bidirectional_iterator_tag;
  37. struct random_access_iterator_tag;
  38. template<class Container>
  39. class insert_iterator;
  40. struct allocator_arg_t;
  41. struct piecewise_construct_t;
  42. template <class Ptr>
  43. struct pointer_traits;
  44. BOOST_MOVE_STD_NS_END
  45. #include <boost/move/detail/std_ns_end.hpp>
  46. #if defined(__cpp_aligned_new)
  47. //align_val_t is not usually in an inline namespace
  48. namespace std {
  49. enum class align_val_t : std::size_t;
  50. } //namespace std
  51. #endif
  52. #endif //#ifndef BOOST_CONTAINER_DETAIL_STD_FWD_HPP