2 // Boost.Pointer Container
4 // Copyright Thorsten Ottosen 2003-2005. 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)
9 // For more information, see http://www.boost.org/libs/ptr_container/
12 #ifndef BOOST_PTR_CONTAINER_SCOPED_DELETER_HPP
13 #define BOOST_PTR_CONTAINER_SCOPED_DELETER_HPP
15 #if defined(_MSC_VER) && (_MSC_VER >= 1200)
21 #include <boost/scoped_array.hpp>
26 namespace ptr_container_detail
28 template< class T, class CloneAllocator >
31 typedef std::size_t size_type;
32 scoped_array<T*> ptrs_;
37 scoped_deleter( size_type size ) :
38 ptrs_( new T*[size] ), stored_( 0 ),
41 BOOST_ASSERT( size > 0 );
46 scoped_deleter( size_type n, const T& x ) // strong
47 : ptrs_( new T*[n] ), stored_(0),
50 for( size_type i = 0; i != n; i++ )
51 add( CloneAllocator::allocate_clone( &x ) );
52 BOOST_ASSERT( stored_ > 0 );
57 template< class InputIterator >
58 scoped_deleter ( InputIterator first, InputIterator last ) // strong
59 : ptrs_( new T*[ std::distance(first,last) ] ),
63 for( ; first != last; ++first )
64 add( CloneAllocator::allocate_clone_from_iterator( first ) );
65 BOOST_ASSERT( stored_ > 0 );
74 for( size_type i = 0u; i != stored_; ++i )
75 CloneAllocator::deallocate_clone( ptrs_[i] );
83 BOOST_ASSERT( ptrs_.get() != 0 );
99 BOOST_ASSERT( ptrs_.get() != 0 );
107 BOOST_ASSERT( ptrs_.get() != 0 );
108 return &ptrs_[stored_];
111 }; // class 'scoped_deleter'