|
libzypp 17.31.31
|
#include <AutoDispose.h>

Public Member Functions | |
| AutoFREE (void *ptr_r=nullptr) | |
Public Member Functions inherited from zypp::AutoDispose< void * > | |
| 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< void * > | |
| typedef boost::call_traits< void * >::param_type | param_type |
| typedef boost::call_traits< void * >::reference | reference |
| typedef boost::call_traits< void * >::const_reference | const_reference |
| typedef void * | value_type |
| typedef boost::call_traits< void * >::value_type | result_type |
| using | dispose_param_type = typename std::conditional< std::is_pointer< void * >::value||std::is_integral< void * >::value, void * const, reference >::type |
| using | Dispose = function< void(dispose_param_type)> |
| Dispose function signatue. | |
Related Symbols inherited from zypp::AutoDispose< void * > | |
| std::ostream & | operator<< (std::ostream &str, const AutoDispose< void * > &obj) |
Stream output of the Tp object. | |
Definition at line 330 of file AutoDispose.h.
|
inline |
Definition at line 332 of file AutoDispose.h.