libzypp 17.31.23
|
#include <AutoDispose.h>
Public Member Functions | |
AutoFREE (Tp *ptr_r=nullptr) | |
AutoFREE (void *ptr_r) | |
Public Member Functions inherited from zypp::AutoDispose< Tp * > | |
AutoDispose () | |
Default Ctor using default constructed value and no dispose function. | |
AutoDispose (const Dispose &dispose_r) | |
Ctor taking dispose function and using default constructed value. | |
AutoDispose (const value_type &value_r) | |
Ctor taking value and no dispose function. | |
AutoDispose (const value_type &value_r, const Dispose &dispose_r) | |
Ctor taking value and dispose function. | |
AutoDispose (value_type &&value_r) | |
Ctor taking rvalue and no dispose function. | |
AutoDispose (value_type &&value_r, const Dispose &dispose_r) | |
Ctor taking rvalue and dispose function. | |
operator reference () const | |
Provide implicit conversion to Tp& . | |
reference | value () const |
Reference to the Tp object. | |
reference | operator* () const |
Reference to the Tp object. | |
value_type * | operator-> () const |
Pointer to the Tp object (asserted to be != NULL ). | |
void | reset () |
Reset to default Ctor values. | |
void | swap (AutoDispose &rhs) |
Exchange the contents of two AutoDispose objects. | |
bool | unique () const |
Returns true if this is the only AutoDispose instance managing the current data object. | |
const Dispose & | getDispose () const |
Return the current dispose function. | |
void | setDispose (const Dispose &dispose_r) |
Set a new dispose function. | |
void | resetDispose () |
Set no dispose function. | |
void | swapDispose (Dispose &dispose_r) |
Exchange the dispose function. | |
Additional Inherited Members | |
Public Types inherited from zypp::AutoDispose< Tp * > | |
typedef boost::call_traits< Tp * >::param_type | param_type |
typedef boost::call_traits< Tp * >::reference | reference |
typedef boost::call_traits< Tp * >::const_reference | const_reference |
typedef Tp * | value_type |
typedef boost::call_traits< Tp * >::value_type | result_type |
using | dispose_param_type = typename std::conditional< std::is_pointer< Tp * >::value||std::is_integral< Tp * >::value, Tp * const, reference >::type |
using | Dispose = function< void(dispose_param_type)> |
Dispose function signatue. | |
Related Functions inherited from zypp::AutoDispose< Tp * > | |
std::ostream & | operator<< (std::ostream &str, const AutoDispose< Tp * > &obj) |
Stream output of the Tp object. | |
Definition at line 323 of file AutoDispose.h.
|
inline |
Definition at line 325 of file AutoDispose.h.
|
inline |
Definition at line 326 of file AutoDispose.h.