Quick Links:

bal | bbl | bdl | bsl

Public Member Functions | Static Public Member Functions

bslstl::SharedPtrAllocateOutofplaceRep< TYPE, DELETER, ALLOCATOR > Class Template Reference

#include <bslstl_sharedptrallocateoutofplacerep.h>

List of all members.

Public Member Functions

virtual void disposeObject ()
virtual void disposeRep ()
virtual void * getDeleter (const std::type_info &type)
virtual void * originalPtr () const
TYPE * ptr () const

Static Public Member Functions

static
SharedPtrAllocateOutofplaceRep
makeOutofplaceRep (TYPE *ptr, const DELETER &deleter, const ALLOCATOR &basicAllocator)

Detailed Description

template<class TYPE, class DELETER, class ALLOCATOR>
class bslstl::SharedPtrAllocateOutofplaceRep< TYPE, DELETER, ALLOCATOR >

This class provides a concrete implementation of the SharedPtrRep protocol for out-of-place instances of the parameterized TYPE. Upon destruction of this object, the parameterized DELETER type is invoked on the pointer to the shared object.

See Component bslstl_sharedptrallocateoutofplacerep


Member Function Documentation

template<class TYPE , class DELETER , class ALLOCATOR >
static SharedPtrAllocateOutofplaceRep* bslstl::SharedPtrAllocateOutofplaceRep< TYPE, DELETER, ALLOCATOR >::makeOutofplaceRep ( TYPE *  ptr,
const DELETER &  deleter,
const ALLOCATOR &  basicAllocator 
) [static]

Return the address of a newly created SharedPtrAllocateOutofplaceRep object that manages the lifetime of the specified ptr, uses the specified deleter to destroy ptr, and uses the specified basicAllocator to supply memory. Note that the parameterized DELETER type will be used to deallocate the memory pointed to by ptr.

template<class TYPE , class DELETER , class ALLOCATOR >
virtual void bslstl::SharedPtrAllocateOutofplaceRep< TYPE, DELETER, ALLOCATOR >::disposeObject (  )  [virtual]

Destroy the object referred to by this representation. This method is invoked by releaseRef when the number of shared references reaches zero and should not be explicitly invoked otherwise.

template<class TYPE , class DELETER , class ALLOCATOR >
virtual void bslstl::SharedPtrAllocateOutofplaceRep< TYPE, DELETER, ALLOCATOR >::disposeRep (  )  [virtual]

Destroy this representation object and deallocate the associated memory. This method is invoked by releaseRef and releaseWeakRef when the number of weak references and the number of shared references both reach zero and should not be explicitly invoked otherwise. The behavior is undefined unless disposeObject has already been called for this representation. Note that this method effectively serves as the representation object's destructor.

template<class TYPE , class DELETER , class ALLOCATOR >
virtual void* bslstl::SharedPtrAllocateOutofplaceRep< TYPE, DELETER, ALLOCATOR >::getDeleter ( const std::type_info &  type  )  [virtual]

Return a pointer to the deleter stored by the derived representation if the deleter has the same type as that described by the specified type, and a null pointer otherwise.

template<class TYPE , class DELETER , class ALLOCATOR >
virtual void* bslstl::SharedPtrAllocateOutofplaceRep< TYPE, DELETER, ALLOCATOR >::originalPtr (  )  const [virtual]

Return the (untyped) address of the modifiable shared object to which this object refers.

template<class TYPE , class DELETER , class ALLOCATOR >
TYPE* bslstl::SharedPtrAllocateOutofplaceRep< TYPE, DELETER, ALLOCATOR >::ptr (  )  const

Return the address of the modifiable shared object to which this object refers.


The documentation for this class was generated from the following file: