Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:50:35

0001 //
0002 // Boost.Pointer Container
0003 //
0004 //  Copyright Thorsten Ottosen 2003-2008. Use, modification and
0005 //  distribution is subject to the Boost Software License, Version
0006 //  1.0. (See accompanying file LICENSE_1_0.txt or copy at
0007 //  http://www.boost.org/LICENSE_1_0.txt)
0008 //
0009 // For more information, see http://www.boost.org/libs/ptr_container/
0010 //
0011 
0012 #ifndef BOOST_PTR_CONTAINER_HPP
0013 #define BOOST_PTR_CONTAINER_HPP
0014 
0015 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
0016 # pragma once
0017 #endif
0018 
0019 #include <boost/ptr_container/ptr_array.hpp>
0020 #include <boost/ptr_container/ptr_deque.hpp>
0021 #include <boost/ptr_container/ptr_list.hpp>
0022 #include <boost/ptr_container/ptr_map.hpp>
0023 #include <boost/ptr_container/ptr_set.hpp>
0024 #include <boost/ptr_container/ptr_vector.hpp>
0025 #include <boost/ptr_container/ptr_unordered_map.hpp>
0026 #include <boost/ptr_container/ptr_unordered_set.hpp>
0027 #include <boost/ptr_container/ptr_circular_buffer.hpp>
0028 #include <boost/ptr_container/ptr_inserter.hpp>
0029 
0030 #endif
0031