CppCMS
|
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 <booster/booster/locale/hold_ptr.h>
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. | |
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).
|
inline |
Create new empty pointer
|
inlineexplicit |
Create a pointer that holds v, ownership is transferred to smart pointer
|
inline |
Destroy smart pointer and the object it owns.
|
inline |
Get a const pointer to the object
|
inline |
Get a mutable pointer to the object
|
inline |
Get a const reference to the object
|
inline |
Get a mutable reference to the object
|
inline |
Get a const pointer to the object
|
inline |
Get a mutable pointer to the object
|
inline |
Transfer an ownership on the pointer to user
|
inline |
Set new value to pointer, previous object is destroyed, ownership on new object is transferred