std_fwd.hpp 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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_INTRUSIVE_DETAIL_STD_FWD_HPP
  11. #define BOOST_INTRUSIVE_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 <boost/move/detail/std_ns_begin.hpp>
  22. BOOST_MOVE_STD_NS_BEG
  23. template<class T>
  24. struct less;
  25. template<class T>
  26. struct equal_to;
  27. struct input_iterator_tag;
  28. struct forward_iterator_tag;
  29. struct bidirectional_iterator_tag;
  30. struct random_access_iterator_tag;
  31. BOOST_MOVE_STD_NS_END
  32. #include <boost/move/detail/std_ns_end.hpp>
  33. #endif //#ifndef BOOST_INTRUSIVE_DETAIL_STD_FWD_HPP