ADTF  3.18.2
cRawMemoryRedirect
Inheritance diagram for cRawMemoryRedirect:
[legend]

Public Member Functions

 cRawMemoryRedirect (std::function< tResult(const IRawMemory &)> fnForward)
 
tResult Set (const void *pValue, size_t szSize) override
 Sets the Raw pointer memory. More...
 
size_t GetSize () const override
 Returns the size in bytes of the memory. More...
 
const void * Get () const override
 Returns the raw memory pointer. More...
 

Private Attributes

std::function< tResult(const IRawMemory &)> m_fnForward
 

Detailed Description

Definition at line 306 of file rawmemory_intf.h.

Member Function Documentation

◆ Get()

const void* Get ( ) const
inlineoverridevirtual

Returns the raw memory pointer.

Returns
the pointer to the raw memory.

Implements IRawMemory.

Definition at line 324 of file rawmemory_intf.h.

◆ GetSize()

size_t GetSize ( ) const
inlineoverridevirtual

Returns the size in bytes of the memory.

Returns
The size in bytes.

Implements IRawMemory.

Definition at line 319 of file rawmemory_intf.h.

◆ Set()

tResult Set ( const void *  pValue,
size_t  szSize 
)
inlineoverridevirtual

Sets the Raw pointer memory.

Copy the content.

Parameters
[in]pValueraw memory pointer.
[in]szSizesize of memory to copy in bytes.
Returns
Standard Result Code.
Return values
ERR_MEMORYThe Memory does not fit.
ERR_POINTERInternal implementation error.

Implements IRawMemory.

Definition at line 314 of file rawmemory_intf.h.