ptr_container.hpp 958 B

12345678910111213141516171819202122232425262728293031
  1. //
  2. // Boost.Pointer Container
  3. //
  4. // Copyright Thorsten Ottosen 2003-2008. Use, modification and
  5. // distribution is subject to the Boost Software License, Version
  6. // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // For more information, see http://www.boost.org/libs/ptr_container/
  10. //
  11. #ifndef BOOST_PTR_CONTAINER_HPP
  12. #define BOOST_PTR_CONTAINER_HPP
  13. #if defined(_MSC_VER) && (_MSC_VER >= 1200)
  14. # pragma once
  15. #endif
  16. #include <boost/ptr_container/ptr_array.hpp>
  17. #include <boost/ptr_container/ptr_deque.hpp>
  18. #include <boost/ptr_container/ptr_list.hpp>
  19. #include <boost/ptr_container/ptr_map.hpp>
  20. #include <boost/ptr_container/ptr_set.hpp>
  21. #include <boost/ptr_container/ptr_vector.hpp>
  22. #include <boost/ptr_container/ptr_unordered_map.hpp>
  23. #include <boost/ptr_container/ptr_unordered_set.hpp>
  24. #include <boost/ptr_container/ptr_circular_buffer.hpp>
  25. #include <boost/ptr_container/ptr_inserter.hpp>
  26. #endif