Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 #ifndef BOOST_SCOPED_ARRAY_HPP_INCLUDED
2 #define BOOST_SCOPED_ARRAY_HPP_INCLUDED
4 // (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
5 // Copyright (c) 2001, 2002 Peter Dimov
7 // Distributed under the Boost Software License, Version 1.0. (See
8 // accompanying file LICENSE_1_0.txt or copy at
9 // http://www.boost.org/LICENSE_1_0.txt)
11 // http://www.boost.org/libs/smart_ptr/scoped_array.htm
14 #include <boost/assert.hpp>
15 #include <boost/checked_delete.hpp>
16 #include <boost/config.hpp> // in case ptrdiff_t not in std
18 #include <boost/detail/workaround.hpp>
20 #include <cstddef> // for std::ptrdiff_t
27 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
29 void sp_array_constructor_hook(void * p);
30 void sp_array_destructor_hook(void * p);
34 // scoped_array extends scoped_ptr to arrays. Deletion of the array pointed to
35 // is guaranteed, either on destruction of the scoped_array or via an explicit
36 // reset(). Use shared_array or std::vector if your needs are more complex.
38 template<class T> class scoped_array // noncopyable
44 scoped_array(scoped_array const &);
45 scoped_array & operator=(scoped_array const &);
47 typedef scoped_array<T> this_type;
51 typedef T element_type;
53 explicit scoped_array(T * p = 0) : ptr(p) // never throws
55 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
56 boost::sp_array_constructor_hook(ptr);
60 ~scoped_array() // never throws
62 #if defined(BOOST_SP_ENABLE_DEBUG_HOOKS)
63 boost::sp_array_destructor_hook(ptr);
65 boost::checked_array_delete(ptr);
68 void reset(T * p = 0) // never throws
70 BOOST_ASSERT(p == 0 || p != ptr); // catch self-reset errors
71 this_type(p).swap(*this);
74 T & operator[](std::ptrdiff_t i) const // never throws
76 BOOST_ASSERT(ptr != 0);
81 T * get() const // never throws
86 // implicit conversion to "bool"
88 #if defined(__SUNPRO_CC) && BOOST_WORKAROUND(__SUNPRO_CC, <= 0x530)
90 operator bool () const
95 #elif defined(__MWERKS__) && BOOST_WORKAROUND(__MWERKS__, BOOST_TESTED_AT(0x3003))
96 typedef T * (this_type::*unspecified_bool_type)() const;
98 operator unspecified_bool_type() const // never throws
100 return ptr == 0? 0: &this_type::get;
105 typedef T * this_type::*unspecified_bool_type;
107 operator unspecified_bool_type() const // never throws
109 return ptr == 0? 0: &this_type::ptr;
114 bool operator! () const // never throws
119 void swap(scoped_array & b) // never throws
128 template<class T> inline void swap(scoped_array<T> & a, scoped_array<T> & b) // never throws
135 #endif // #ifndef BOOST_SCOPED_ARRAY_HPP_INCLUDED