Represents a memory block (via "void*") that can be shared between several objects through copy operator (=).
It keeps the reference count and only when it comes to zero, the memory block is really freed. Behaves like std::shared_ptr<>.
Definition at line 27 of file CReferencedMemBlock.h.
#include <mrpt/utils/CReferencedMemBlock.h>
Public Member Functions | |
| CReferencedMemBlock (size_t mem_block_size=0) | |
| Constructor with an optional size of the memory block. More... | |
| virtual | ~CReferencedMemBlock () |
| Destructor, calls dereference_once. More... | |
| void | resize (size_t mem_block_size) |
| Resize the shared memory block. More... | |
| template<class T > | |
| T * | getAsPtr () |
| template<class T > | |
| const T * | getAsPtr () const |
| template<class T > | |
| T & | getAs () |
| template<class T > | |
| const T & | getAs () const |
| unsigned int | alias_count () const |
| void | clear () |
| Frees the underlying memory block. More... | |
Protected Attributes | |
| stlplus::smart_ptr< std::vector< char > > | m_data |
| mrpt::utils::CReferencedMemBlock::CReferencedMemBlock | ( | size_t | mem_block_size = 0 | ) |
Constructor with an optional size of the memory block.
|
virtual |
Destructor, calls dereference_once.
| unsigned int mrpt::utils::CReferencedMemBlock::alias_count | ( | ) | const |
| void mrpt::utils::CReferencedMemBlock::clear | ( | ) |
Frees the underlying memory block.
|
inline |
Definition at line 52 of file CReferencedMemBlock.h.
|
inline |
Definition at line 53 of file CReferencedMemBlock.h.
References mrpt::utils::clear().
|
inline |
Definition at line 39 of file CReferencedMemBlock.h.
|
inline |
Definition at line 45 of file CReferencedMemBlock.h.
| void mrpt::utils::CReferencedMemBlock::resize | ( | size_t | mem_block_size | ) |
Resize the shared memory block.
|
protected |
Definition at line 59 of file CReferencedMemBlock.h.
| Page generated by Doxygen 1.8.13 for MRPT 1.5.3 at Tue Aug 22 01:03:35 UTC 2017 |