os/ossrv/ossrv_pub/boost_apis/boost/shared_ptr.hpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
#ifndef BOOST_SHARED_PTR_HPP_INCLUDED
sl@0
     2
#define BOOST_SHARED_PTR_HPP_INCLUDED
sl@0
     3
sl@0
     4
//
sl@0
     5
//  shared_ptr.hpp
sl@0
     6
//
sl@0
     7
//  (C) Copyright Greg Colvin and Beman Dawes 1998, 1999.
sl@0
     8
//  Copyright (c) 2001-2006 Peter Dimov
sl@0
     9
//
sl@0
    10
//  Distributed under the Boost Software License, Version 1.0. (See
sl@0
    11
//  accompanying file LICENSE_1_0.txt or copy at
sl@0
    12
//  http://www.boost.org/LICENSE_1_0.txt)
sl@0
    13
//
sl@0
    14
//  See http://www.boost.org/libs/smart_ptr/shared_ptr.htm for documentation.
sl@0
    15
//
sl@0
    16
sl@0
    17
#include <boost/config.hpp>   // for broken compiler workarounds
sl@0
    18
sl@0
    19
#if defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(BOOST_MSVC6_MEMBER_TEMPLATES)
sl@0
    20
#include <boost/detail/shared_ptr_nmt.hpp>
sl@0
    21
#else
sl@0
    22
sl@0
    23
#include <memory>               // for std::auto_ptr
sl@0
    24
sl@0
    25
#include <boost/assert.hpp>
sl@0
    26
#include <boost/checked_delete.hpp>
sl@0
    27
#include <boost/throw_exception.hpp>
sl@0
    28
#include <boost/detail/shared_count.hpp>
sl@0
    29
#include <boost/detail/workaround.hpp>
sl@0
    30
sl@0
    31
#include <algorithm>            // for std::swap
sl@0
    32
#include <functional>           // for std::less
sl@0
    33
#include <typeinfo>             // for std::bad_cast
sl@0
    34
#include <iosfwd>               // for std::basic_ostream
sl@0
    35
sl@0
    36
#ifdef BOOST_MSVC  // moved here to work around VC++ compiler crash
sl@0
    37
# pragma warning(push)
sl@0
    38
# pragma warning(disable:4284) // odd return type for operator->
sl@0
    39
#endif
sl@0
    40
sl@0
    41
namespace boost
sl@0
    42
{
sl@0
    43
sl@0
    44
template<class T> class weak_ptr;
sl@0
    45
template<class T> class enable_shared_from_this;
sl@0
    46
sl@0
    47
namespace detail
sl@0
    48
{
sl@0
    49
sl@0
    50
struct static_cast_tag {};
sl@0
    51
struct const_cast_tag {};
sl@0
    52
struct dynamic_cast_tag {};
sl@0
    53
struct polymorphic_cast_tag {};
sl@0
    54
sl@0
    55
template<class T> struct shared_ptr_traits
sl@0
    56
{
sl@0
    57
    typedef T & reference;
sl@0
    58
};
sl@0
    59
sl@0
    60
template<> struct shared_ptr_traits<void>
sl@0
    61
{
sl@0
    62
    typedef void reference;
sl@0
    63
};
sl@0
    64
sl@0
    65
#if !defined(BOOST_NO_CV_VOID_SPECIALIZATIONS)
sl@0
    66
sl@0
    67
template<> struct shared_ptr_traits<void const>
sl@0
    68
{
sl@0
    69
    typedef void reference;
sl@0
    70
};
sl@0
    71
sl@0
    72
template<> struct shared_ptr_traits<void volatile>
sl@0
    73
{
sl@0
    74
    typedef void reference;
sl@0
    75
};
sl@0
    76
sl@0
    77
template<> struct shared_ptr_traits<void const volatile>
sl@0
    78
{
sl@0
    79
    typedef void reference;
sl@0
    80
};
sl@0
    81
sl@0
    82
#endif
sl@0
    83
sl@0
    84
// enable_shared_from_this support
sl@0
    85
sl@0
    86
template<class T, class Y> void sp_enable_shared_from_this( shared_count const & pn, boost::enable_shared_from_this<T> const * pe, Y const * px )
sl@0
    87
{
sl@0
    88
    if(pe != 0) pe->_internal_weak_this._internal_assign(const_cast<Y*>(px), pn);
sl@0
    89
}
sl@0
    90
sl@0
    91
#ifdef sgi
sl@0
    92
// Turn off: the last argument of the varargs function "sp_enable_shared_from_this" is unnamed
sl@0
    93
# pragma set woff 3506
sl@0
    94
#endif
sl@0
    95
sl@0
    96
inline void sp_enable_shared_from_this( shared_count const & /*pn*/, ... )
sl@0
    97
{
sl@0
    98
}
sl@0
    99
sl@0
   100
#ifdef sgi
sl@0
   101
# pragma reset woff 3506
sl@0
   102
#endif
sl@0
   103
sl@0
   104
#if !defined( BOOST_NO_SFINAE ) && !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION ) && !defined( BOOST_NO_AUTO_PTR )
sl@0
   105
sl@0
   106
// rvalue auto_ptr support based on a technique by Dave Abrahams
sl@0
   107
sl@0
   108
template< class T, class R > struct sp_enable_if_auto_ptr
sl@0
   109
{
sl@0
   110
};
sl@0
   111
sl@0
   112
template< class T, class R > struct sp_enable_if_auto_ptr< std::auto_ptr< T >, R >
sl@0
   113
{
sl@0
   114
    typedef R type;
sl@0
   115
}; 
sl@0
   116
sl@0
   117
#endif
sl@0
   118
sl@0
   119
} // namespace detail
sl@0
   120
sl@0
   121
sl@0
   122
//
sl@0
   123
//  shared_ptr
sl@0
   124
//
sl@0
   125
//  An enhanced relative of scoped_ptr with reference counted copy semantics.
sl@0
   126
//  The object pointed to is deleted when the last shared_ptr pointing to it
sl@0
   127
//  is destroyed or reset.
sl@0
   128
//
sl@0
   129
sl@0
   130
template<class T> class shared_ptr
sl@0
   131
{
sl@0
   132
private:
sl@0
   133
sl@0
   134
    // Borland 5.5.1 specific workaround
sl@0
   135
    typedef shared_ptr<T> this_type;
sl@0
   136
sl@0
   137
public:
sl@0
   138
sl@0
   139
    typedef T element_type;
sl@0
   140
    typedef T value_type;
sl@0
   141
    typedef T * pointer;
sl@0
   142
    typedef typename boost::detail::shared_ptr_traits<T>::reference reference;
sl@0
   143
sl@0
   144
    shared_ptr(): px(0), pn() // never throws in 1.30+
sl@0
   145
    {
sl@0
   146
    }
sl@0
   147
sl@0
   148
    template<class Y>
sl@0
   149
    explicit shared_ptr( Y * p ): px( p ), pn( p ) // Y must be complete
sl@0
   150
    {
sl@0
   151
        boost::detail::sp_enable_shared_from_this( pn, p, p );
sl@0
   152
    }
sl@0
   153
sl@0
   154
    //
sl@0
   155
    // Requirements: D's copy constructor must not throw
sl@0
   156
    //
sl@0
   157
    // shared_ptr will release p by calling d(p)
sl@0
   158
    //
sl@0
   159
sl@0
   160
    template<class Y, class D> shared_ptr(Y * p, D d): px(p), pn(p, d)
sl@0
   161
    {
sl@0
   162
        boost::detail::sp_enable_shared_from_this( pn, p, p );
sl@0
   163
    }
sl@0
   164
sl@0
   165
    // As above, but with allocator. A's copy constructor shall not throw.
sl@0
   166
sl@0
   167
    template<class Y, class D, class A> shared_ptr( Y * p, D d, A a ): px( p ), pn( p, d, a )
sl@0
   168
    {
sl@0
   169
        boost::detail::sp_enable_shared_from_this( pn, p, p );
sl@0
   170
    }
sl@0
   171
sl@0
   172
//  generated copy constructor, assignment, destructor are fine...
sl@0
   173
sl@0
   174
//  except that Borland C++ has a bug, and g++ with -Wsynth warns
sl@0
   175
#if defined(__BORLANDC__) || defined(__GNUC__)
sl@0
   176
sl@0
   177
    shared_ptr & operator=(shared_ptr const & r) // never throws
sl@0
   178
    {
sl@0
   179
        px = r.px;
sl@0
   180
        pn = r.pn; // shared_count::op= doesn't throw
sl@0
   181
        return *this;
sl@0
   182
    }
sl@0
   183
sl@0
   184
#endif
sl@0
   185
sl@0
   186
    template<class Y>
sl@0
   187
    explicit shared_ptr(weak_ptr<Y> const & r): pn(r.pn) // may throw
sl@0
   188
    {
sl@0
   189
        // it is now safe to copy r.px, as pn(r.pn) did not throw
sl@0
   190
        px = r.px;
sl@0
   191
    }
sl@0
   192
sl@0
   193
    template<class Y>
sl@0
   194
    shared_ptr(shared_ptr<Y> const & r): px(r.px), pn(r.pn) // never throws
sl@0
   195
    {
sl@0
   196
    }
sl@0
   197
sl@0
   198
    template<class Y>
sl@0
   199
    shared_ptr(shared_ptr<Y> const & r, boost::detail::static_cast_tag): px(static_cast<element_type *>(r.px)), pn(r.pn)
sl@0
   200
    {
sl@0
   201
    }
sl@0
   202
sl@0
   203
    template<class Y>
sl@0
   204
    shared_ptr(shared_ptr<Y> const & r, boost::detail::const_cast_tag): px(const_cast<element_type *>(r.px)), pn(r.pn)
sl@0
   205
    {
sl@0
   206
    }
sl@0
   207
sl@0
   208
    template<class Y>
sl@0
   209
    shared_ptr(shared_ptr<Y> const & r, boost::detail::dynamic_cast_tag): px(dynamic_cast<element_type *>(r.px)), pn(r.pn)
sl@0
   210
    {
sl@0
   211
        if(px == 0) // need to allocate new counter -- the cast failed
sl@0
   212
        {
sl@0
   213
            pn = boost::detail::shared_count();
sl@0
   214
        }
sl@0
   215
    }
sl@0
   216
sl@0
   217
    template<class Y>
sl@0
   218
    shared_ptr(shared_ptr<Y> const & r, boost::detail::polymorphic_cast_tag): px(dynamic_cast<element_type *>(r.px)), pn(r.pn)
sl@0
   219
    {
sl@0
   220
        if(px == 0)
sl@0
   221
        {
sl@0
   222
            boost::throw_exception(std::bad_cast());
sl@0
   223
        }
sl@0
   224
    }
sl@0
   225
sl@0
   226
#ifndef BOOST_NO_AUTO_PTR
sl@0
   227
sl@0
   228
    template<class Y>
sl@0
   229
    explicit shared_ptr(std::auto_ptr<Y> & r): px(r.get()), pn()
sl@0
   230
    {
sl@0
   231
        Y * tmp = r.get();
sl@0
   232
        pn = boost::detail::shared_count(r);
sl@0
   233
        boost::detail::sp_enable_shared_from_this( pn, tmp, tmp );
sl@0
   234
    }
sl@0
   235
sl@0
   236
#if !defined( BOOST_NO_SFINAE ) && !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
sl@0
   237
sl@0
   238
    template<class Ap>
sl@0
   239
    explicit shared_ptr( Ap r, typename boost::detail::sp_enable_if_auto_ptr<Ap, int>::type = 0 ): px( r.get() ), pn()
sl@0
   240
    {
sl@0
   241
        typename Ap::element_type * tmp = r.get();
sl@0
   242
        pn = boost::detail::shared_count( r );
sl@0
   243
        boost::detail::sp_enable_shared_from_this( pn, tmp, tmp );
sl@0
   244
    }
sl@0
   245
sl@0
   246
sl@0
   247
#endif // BOOST_NO_SFINAE, BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   248
sl@0
   249
#endif // BOOST_NO_AUTO_PTR
sl@0
   250
sl@0
   251
#if !defined(BOOST_MSVC) || (BOOST_MSVC >= 1300)
sl@0
   252
sl@0
   253
    template<class Y>
sl@0
   254
    shared_ptr & operator=(shared_ptr<Y> const & r) // never throws
sl@0
   255
    {
sl@0
   256
        px = r.px;
sl@0
   257
        pn = r.pn; // shared_count::op= doesn't throw
sl@0
   258
        return *this;
sl@0
   259
    }
sl@0
   260
sl@0
   261
#endif
sl@0
   262
sl@0
   263
#ifndef BOOST_NO_AUTO_PTR
sl@0
   264
sl@0
   265
    template<class Y>
sl@0
   266
    shared_ptr & operator=( std::auto_ptr<Y> & r )
sl@0
   267
    {
sl@0
   268
        this_type(r).swap(*this);
sl@0
   269
        return *this;
sl@0
   270
    }
sl@0
   271
sl@0
   272
#if !defined( BOOST_NO_SFINAE ) && !defined( BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION )
sl@0
   273
sl@0
   274
    template<class Ap>
sl@0
   275
    typename boost::detail::sp_enable_if_auto_ptr< Ap, shared_ptr & >::type operator=( Ap r )
sl@0
   276
    {
sl@0
   277
        this_type( r ).swap( *this );
sl@0
   278
        return *this;
sl@0
   279
    }
sl@0
   280
sl@0
   281
sl@0
   282
#endif // BOOST_NO_SFINAE, BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION
sl@0
   283
sl@0
   284
#endif // BOOST_NO_AUTO_PTR
sl@0
   285
sl@0
   286
    void reset() // never throws in 1.30+
sl@0
   287
    {
sl@0
   288
        this_type().swap(*this);
sl@0
   289
    }
sl@0
   290
sl@0
   291
    template<class Y> void reset(Y * p) // Y must be complete
sl@0
   292
    {
sl@0
   293
        BOOST_ASSERT(p == 0 || p != px); // catch self-reset errors
sl@0
   294
        this_type(p).swap(*this);
sl@0
   295
    }
sl@0
   296
sl@0
   297
    template<class Y, class D> void reset( Y * p, D d )
sl@0
   298
    {
sl@0
   299
        this_type( p, d ).swap( *this );
sl@0
   300
    }
sl@0
   301
sl@0
   302
    template<class Y, class D, class A> void reset( Y * p, D d, A a )
sl@0
   303
    {
sl@0
   304
        this_type( p, d, a ).swap( *this );
sl@0
   305
    }
sl@0
   306
sl@0
   307
    reference operator* () const // never throws
sl@0
   308
    {
sl@0
   309
        BOOST_ASSERT(px != 0);
sl@0
   310
        return *px;
sl@0
   311
    }
sl@0
   312
sl@0
   313
    T * operator-> () const // never throws
sl@0
   314
    {
sl@0
   315
        BOOST_ASSERT(px != 0);
sl@0
   316
        return px;
sl@0
   317
    }
sl@0
   318
    
sl@0
   319
    T * get() const // never throws
sl@0
   320
    {
sl@0
   321
        return px;
sl@0
   322
    }
sl@0
   323
sl@0
   324
    // implicit conversion to "bool"
sl@0
   325
sl@0
   326
#if defined(__SUNPRO_CC) && BOOST_WORKAROUND(__SUNPRO_CC, <= 0x580)
sl@0
   327
sl@0
   328
    operator bool () const
sl@0
   329
    {
sl@0
   330
        return px != 0;
sl@0
   331
    }
sl@0
   332
sl@0
   333
#elif defined( _MANAGED )
sl@0
   334
sl@0
   335
    static void unspecified_bool( this_type*** )
sl@0
   336
    {
sl@0
   337
    }
sl@0
   338
sl@0
   339
    typedef void (*unspecified_bool_type)( this_type*** );
sl@0
   340
sl@0
   341
    operator unspecified_bool_type() const // never throws
sl@0
   342
    {
sl@0
   343
        return px == 0? 0: unspecified_bool;
sl@0
   344
    }
sl@0
   345
sl@0
   346
#elif \
sl@0
   347
    ( defined(__MWERKS__) && BOOST_WORKAROUND(__MWERKS__, < 0x3200) ) || \
sl@0
   348
    ( defined(__GNUC__) && (__GNUC__ * 100 + __GNUC_MINOR__ < 304) )
sl@0
   349
sl@0
   350
    typedef T * (this_type::*unspecified_bool_type)() const;
sl@0
   351
    
sl@0
   352
    operator unspecified_bool_type() const // never throws
sl@0
   353
    {
sl@0
   354
        return px == 0? 0: &this_type::get;
sl@0
   355
    }
sl@0
   356
sl@0
   357
#else 
sl@0
   358
sl@0
   359
    typedef T * this_type::*unspecified_bool_type;
sl@0
   360
sl@0
   361
    operator unspecified_bool_type() const // never throws
sl@0
   362
    {
sl@0
   363
        return px == 0? 0: &this_type::px;
sl@0
   364
    }
sl@0
   365
sl@0
   366
#endif
sl@0
   367
sl@0
   368
    // operator! is redundant, but some compilers need it
sl@0
   369
sl@0
   370
    bool operator! () const // never throws
sl@0
   371
    {
sl@0
   372
        return px == 0;
sl@0
   373
    }
sl@0
   374
sl@0
   375
    bool unique() const // never throws
sl@0
   376
    {
sl@0
   377
        return pn.unique();
sl@0
   378
    }
sl@0
   379
sl@0
   380
    long use_count() const // never throws
sl@0
   381
    {
sl@0
   382
        return pn.use_count();
sl@0
   383
    }
sl@0
   384
sl@0
   385
    void swap(shared_ptr<T> & other) // never throws
sl@0
   386
    {
sl@0
   387
        std::swap(px, other.px);
sl@0
   388
        pn.swap(other.pn);
sl@0
   389
    }
sl@0
   390
sl@0
   391
    template<class Y> bool _internal_less(shared_ptr<Y> const & rhs) const
sl@0
   392
    {
sl@0
   393
        return pn < rhs.pn;
sl@0
   394
    }
sl@0
   395
sl@0
   396
    void * _internal_get_deleter(std::type_info const & ti) const
sl@0
   397
    {
sl@0
   398
        return pn.get_deleter(ti);
sl@0
   399
    }
sl@0
   400
sl@0
   401
// Tasteless as this may seem, making all members public allows member templates
sl@0
   402
// to work in the absence of member template friends. (Matthew Langston)
sl@0
   403
sl@0
   404
#ifndef BOOST_NO_MEMBER_TEMPLATE_FRIENDS
sl@0
   405
sl@0
   406
private:
sl@0
   407
sl@0
   408
    template<class Y> friend class shared_ptr;
sl@0
   409
    template<class Y> friend class weak_ptr;
sl@0
   410
sl@0
   411
sl@0
   412
#endif
sl@0
   413
sl@0
   414
    T * px;                     // contained pointer
sl@0
   415
    boost::detail::shared_count pn;    // reference counter
sl@0
   416
sl@0
   417
};  // shared_ptr
sl@0
   418
sl@0
   419
template<class T, class U> inline bool operator==(shared_ptr<T> const & a, shared_ptr<U> const & b)
sl@0
   420
{
sl@0
   421
    return a.get() == b.get();
sl@0
   422
}
sl@0
   423
sl@0
   424
template<class T, class U> inline bool operator!=(shared_ptr<T> const & a, shared_ptr<U> const & b)
sl@0
   425
{
sl@0
   426
    return a.get() != b.get();
sl@0
   427
}
sl@0
   428
sl@0
   429
#if __GNUC__ == 2 && __GNUC_MINOR__ <= 96
sl@0
   430
sl@0
   431
// Resolve the ambiguity between our op!= and the one in rel_ops
sl@0
   432
sl@0
   433
template<class T> inline bool operator!=(shared_ptr<T> const & a, shared_ptr<T> const & b)
sl@0
   434
{
sl@0
   435
    return a.get() != b.get();
sl@0
   436
}
sl@0
   437
sl@0
   438
#endif
sl@0
   439
sl@0
   440
template<class T, class U> inline bool operator<(shared_ptr<T> const & a, shared_ptr<U> const & b)
sl@0
   441
{
sl@0
   442
    return a._internal_less(b);
sl@0
   443
}
sl@0
   444
sl@0
   445
template<class T> inline void swap(shared_ptr<T> & a, shared_ptr<T> & b)
sl@0
   446
{
sl@0
   447
    a.swap(b);
sl@0
   448
}
sl@0
   449
sl@0
   450
template<class T, class U> shared_ptr<T> static_pointer_cast(shared_ptr<U> const & r)
sl@0
   451
{
sl@0
   452
    return shared_ptr<T>(r, boost::detail::static_cast_tag());
sl@0
   453
}
sl@0
   454
sl@0
   455
template<class T, class U> shared_ptr<T> const_pointer_cast(shared_ptr<U> const & r)
sl@0
   456
{
sl@0
   457
    return shared_ptr<T>(r, boost::detail::const_cast_tag());
sl@0
   458
}
sl@0
   459
sl@0
   460
template<class T, class U> shared_ptr<T> dynamic_pointer_cast(shared_ptr<U> const & r)
sl@0
   461
{
sl@0
   462
    return shared_ptr<T>(r, boost::detail::dynamic_cast_tag());
sl@0
   463
}
sl@0
   464
sl@0
   465
// shared_*_cast names are deprecated. Use *_pointer_cast instead.
sl@0
   466
sl@0
   467
template<class T, class U> shared_ptr<T> shared_static_cast(shared_ptr<U> const & r)
sl@0
   468
{
sl@0
   469
    return shared_ptr<T>(r, boost::detail::static_cast_tag());
sl@0
   470
}
sl@0
   471
sl@0
   472
template<class T, class U> shared_ptr<T> shared_dynamic_cast(shared_ptr<U> const & r)
sl@0
   473
{
sl@0
   474
    return shared_ptr<T>(r, boost::detail::dynamic_cast_tag());
sl@0
   475
}
sl@0
   476
sl@0
   477
template<class T, class U> shared_ptr<T> shared_polymorphic_cast(shared_ptr<U> const & r)
sl@0
   478
{
sl@0
   479
    return shared_ptr<T>(r, boost::detail::polymorphic_cast_tag());
sl@0
   480
}
sl@0
   481
sl@0
   482
template<class T, class U> shared_ptr<T> shared_polymorphic_downcast(shared_ptr<U> const & r)
sl@0
   483
{
sl@0
   484
    BOOST_ASSERT(dynamic_cast<T *>(r.get()) == r.get());
sl@0
   485
    return shared_static_cast<T>(r);
sl@0
   486
}
sl@0
   487
sl@0
   488
// get_pointer() enables boost::mem_fn to recognize shared_ptr
sl@0
   489
sl@0
   490
template<class T> inline T * get_pointer(shared_ptr<T> const & p)
sl@0
   491
{
sl@0
   492
    return p.get();
sl@0
   493
}
sl@0
   494
sl@0
   495
// operator<<
sl@0
   496
sl@0
   497
#if defined(__GNUC__) &&  (__GNUC__ < 3)
sl@0
   498
sl@0
   499
template<class Y> std::ostream & operator<< (std::ostream & os, shared_ptr<Y> const & p)
sl@0
   500
{
sl@0
   501
    os << p.get();
sl@0
   502
    return os;
sl@0
   503
}
sl@0
   504
sl@0
   505
#else
sl@0
   506
sl@0
   507
// in STLport's no-iostreams mode no iostream symbols can be used
sl@0
   508
#ifndef _STLP_NO_IOSTREAMS
sl@0
   509
sl@0
   510
# if defined(BOOST_MSVC) && BOOST_WORKAROUND(BOOST_MSVC, < 1300 && __SGI_STL_PORT)
sl@0
   511
// MSVC6 has problems finding std::basic_ostream through the using declaration in namespace _STL
sl@0
   512
using std::basic_ostream;
sl@0
   513
template<class E, class T, class Y> basic_ostream<E, T> & operator<< (basic_ostream<E, T> & os, shared_ptr<Y> const & p)
sl@0
   514
# else
sl@0
   515
template<class E, class T, class Y> std::basic_ostream<E, T> & operator<< (std::basic_ostream<E, T> & os, shared_ptr<Y> const & p)
sl@0
   516
# endif 
sl@0
   517
{
sl@0
   518
    os << p.get();
sl@0
   519
    return os;
sl@0
   520
}
sl@0
   521
sl@0
   522
#endif // _STLP_NO_IOSTREAMS
sl@0
   523
sl@0
   524
#endif // __GNUC__ < 3
sl@0
   525
sl@0
   526
// get_deleter (experimental)
sl@0
   527
sl@0
   528
#if ( defined(__GNUC__) && BOOST_WORKAROUND(__GNUC__, < 3) ) || \
sl@0
   529
    ( defined(__EDG_VERSION__) && BOOST_WORKAROUND(__EDG_VERSION__, <= 238) ) || \
sl@0
   530
    ( defined(__HP_aCC) && BOOST_WORKAROUND(__HP_aCC, <= 33500) )
sl@0
   531
sl@0
   532
// g++ 2.9x doesn't allow static_cast<X const *>(void *)
sl@0
   533
// apparently EDG 2.38 and HP aCC A.03.35 also don't accept it
sl@0
   534
sl@0
   535
template<class D, class T> D * get_deleter(shared_ptr<T> const & p)
sl@0
   536
{
sl@0
   537
    void const * q = p._internal_get_deleter(typeid(D));
sl@0
   538
    return const_cast<D *>(static_cast<D const *>(q));
sl@0
   539
}
sl@0
   540
sl@0
   541
#else
sl@0
   542
sl@0
   543
template<class D, class T> D * get_deleter(shared_ptr<T> const & p)
sl@0
   544
{
sl@0
   545
    return static_cast<D *>(p._internal_get_deleter(typeid(D)));
sl@0
   546
}
sl@0
   547
sl@0
   548
#endif
sl@0
   549
sl@0
   550
} // namespace boost
sl@0
   551
sl@0
   552
#ifdef BOOST_MSVC
sl@0
   553
# pragma warning(pop)
sl@0
   554
#endif    
sl@0
   555
sl@0
   556
#endif  // #if defined(BOOST_NO_MEMBER_TEMPLATES) && !defined(BOOST_MSVC6_MEMBER_TEMPLATES)
sl@0
   557
sl@0
   558
#endif  // #ifndef BOOST_SHARED_PTR_HPP_INCLUDED