Boost.Locale
boost::locale::hold_ptr< T > Class Template Reference

a smart pointer similar to std::auto_ptr but it is non-copyable and the underlying object has the same constness as the pointer itself (unlike an ordinary pointer). More...

#include <boost/locale/hold_ptr.hpp>

Public Member Functions

 hold_ptr ()
 
 hold_ptr (T *v)
 
 ~hold_ptr ()
 
T const * get () const
 
T * get ()
 
T const & operator * () const
 
T & operator * ()
 
T const * operator-> () const
 
T * operator-> ()
 
T * release ()
 
void reset (T *p=0)
 
void swap (hold_ptr &other)
 Swap two pointers.
 

Detailed Description

template<typename T>
class boost::locale::hold_ptr< T >

a smart pointer similar to std::auto_ptr but it is non-copyable and the underlying object has the same constness as the pointer itself (unlike an ordinary pointer).

Constructor & Destructor Documentation

◆ hold_ptr() [1/2]

template<typename T>
boost::locale::hold_ptr< T >::hold_ptr ( )
inline

Create new empty pointer

◆ hold_ptr() [2/2]

template<typename T>
boost::locale::hold_ptr< T >::hold_ptr ( T *  v)
inlineexplicit

Create a pointer that holds v, ownership is transferred to smart pointer

◆ ~hold_ptr()

template<typename T>
boost::locale::hold_ptr< T >::~hold_ptr ( )
inline

Destroy smart pointer and the object it owns.

Member Function Documentation

◆ get() [1/2]

template<typename T>
T const* boost::locale::hold_ptr< T >::get ( ) const
inline

Get a const pointer to the object

◆ get() [2/2]

template<typename T>
T* boost::locale::hold_ptr< T >::get ( )
inline

Get a mutable pointer to the object

◆ operator *() [1/2]

template<typename T>
T const& boost::locale::hold_ptr< T >::operator * ( ) const
inline

Get a const reference to the object

◆ operator *() [2/2]

template<typename T>
T& boost::locale::hold_ptr< T >::operator * ( )
inline

Get a mutable reference to the object

◆ operator->() [1/2]

template<typename T>
T const* boost::locale::hold_ptr< T >::operator-> ( ) const
inline

Get a const pointer to the object

◆ operator->() [2/2]

template<typename T>
T* boost::locale::hold_ptr< T >::operator-> ( )
inline

Get a mutable pointer to the object

◆ release()

template<typename T>
T* boost::locale::hold_ptr< T >::release ( )
inline

Transfer an ownership on the pointer to user

◆ reset()

template<typename T>
void boost::locale::hold_ptr< T >::reset ( T *  p = 0)
inline

Set new value to pointer, previous object is destroyed, ownership on new object is transferred


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