Quick Links:

bal | bbl | bdl | bsl

Public Member Functions | Public Attributes

bslma::SharedPtrOutofplaceRep_InitProctor< TYPE, DELETER > Struct Template Reference

#include <bslma_sharedptroutofplacerep.h>

List of all members.

Public Member Functions

 SharedPtrOutofplaceRep_InitProctor (TYPE *ptr, const DELETER &deleter)
 ~SharedPtrOutofplaceRep_InitProctor ()
void release ()

Public Attributes

TYPE * d_ptr_p
const DELETER & d_deleter

Detailed Description

template<class TYPE, class DELETER>
struct bslma::SharedPtrOutofplaceRep_InitProctor< TYPE, DELETER >

This proctor is used for out-of-place shared pointer instantiations. Generally, a proctor is created prior to constructing a SharedPtrOutofplaceRep and released after successful construction. In the event that an exception is thrown during construction of the representation, the proctor will delete the provided pointer using the provided deleter. Note that the provided deleter is held by reference and must remain valid for the lifetime of the proctor. If the proctor is not released before it's destruction, a copy of the deleter is instantiated to delete the pointer (in case operator() is non-'const'). Also note that if the deleter throws during copy construction, the provided pointer will not be destroyed.

See Component bslma_sharedptroutofplacerep


Constructor & Destructor Documentation

template<class TYPE , class DELETER >
bslma::SharedPtrOutofplaceRep_InitProctor< TYPE, DELETER >::SharedPtrOutofplaceRep_InitProctor ( TYPE *  ptr,
const DELETER &  deleter 
)

Create a proctor referring to the specified ptr and using the specified deleter to destroy ptr when the proctor is destroyed.

template<class TYPE , class DELETER >
bslma::SharedPtrOutofplaceRep_InitProctor< TYPE, DELETER >::~SharedPtrOutofplaceRep_InitProctor (  ) 

Destroy this proctor and the object (if any) referred to by this proctor.


Member Function Documentation

template<class TYPE , class DELETER >
void bslma::SharedPtrOutofplaceRep_InitProctor< TYPE, DELETER >::release (  ) 

Release from management the object referred to by this proctor.


Member Data Documentation

template<class TYPE , class DELETER >
TYPE* bslma::SharedPtrOutofplaceRep_InitProctor< TYPE, DELETER >::d_ptr_p

address of the managed object (held, not

template<class TYPE , class DELETER >
const DELETER& bslma::SharedPtrOutofplaceRep_InitProctor< TYPE, DELETER >::d_deleter

deleter used to destroy managed object


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