TDME2 1.9.121
|
#include <tdme/utilities/IntBuffer.h>
Public Member Functions | |
IntBuffer () | |
Default constructor. More... | |
IntBuffer (Buffer *buffer) | |
Public constructor. More... | |
virtual int32_t | getCapacity () |
virtual int32_t | getPosition () |
int32_t | get (int32_t position) |
Get a value at given position. More... | |
IntBuffer * | put (int32_t value) |
Puts a value into buffer at its current position. More... | |
![]() | |
Buffer (int32_t capacity) | |
Public constructor. More... | |
Buffer (Buffer *buffer) | |
Public constructor. More... | |
Buffer (vector< uint8_t > *data) | |
Public constructor. More... | |
virtual | ~Buffer () |
Destructor. More... | |
Buffer * | clear () |
Clear. More... | |
virtual int32_t | getCapacity () |
virtual int32_t | getPosition () |
virtual Buffer * | setPosition (int32_t position) |
Set position. More... | |
uint8_t | get (int32_t position) |
Buffer * | put (uint8_t value) |
Put value into buffer. More... | |
Buffer * | put (const uint8_t *data, int32_t size) |
Put data into buffer. More... | |
uint8_t * | getBuffer () |
Integer buffer class.
Definition at line 13 of file IntBuffer.h.
|
inline |
Default constructor.
Definition at line 19 of file IntBuffer.h.
Public constructor.
Definition at line 25 of file IntBuffer.h.
|
inline |
Get a value at given position.
position | position |
Definition at line 46 of file IntBuffer.h.
|
inlinevirtual |
|
inlinevirtual |
|
inline |
Puts a value into buffer at its current position.
value | value |
Definition at line 59 of file IntBuffer.h.