std_fwd.hpp 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  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 <boost/move/detail/std_ns_begin.hpp>
  22. BOOST_MOVE_STD_NS_BEG
  23. template<class T>
  24. class allocator;
  25. template<class T>
  26. struct less;
  27. template<class T>
  28. struct equal_to;
  29. template<class T1, class T2>
  30. struct pair;
  31. template<class T>
  32. struct char_traits;
  33. struct input_iterator_tag;
  34. struct forward_iterator_tag;
  35. struct bidirectional_iterator_tag;
  36. struct random_access_iterator_tag;
  37. template<class Container>
  38. class insert_iterator;
  39. struct allocator_arg_t;
  40. struct piecewise_construct_t;
  41. BOOST_MOVE_STD_NS_END
  42. #include <boost/move/detail/std_ns_end.hpp>
  43. #endif //#ifndef BOOST_CONTAINER_DETAIL_STD_FWD_HPP