TDME2 1.9.121
ByteBuffer.h
Go to the documentation of this file.
1#pragma once
2
3#include <vector>
4
5#include <tdme/tdme.h>
11
12using std::vector;
13
18
19/**
20 * Byte buffer class
21 * @author Andreas Drewke
22 */
24{
25public:
26 /**
27 * Allocate byte buffer
28 */
29 inline static ByteBuffer* allocate(int32_t capacity) {
30 return new ByteBuffer(capacity);
31 }
32
33 /**
34 * @return this buffer as float buffer
35 */
37 return FloatBuffer(this);
38 }
39
40 /**
41 * @return this buffer as int buffer
42 */
44 return IntBuffer(this);
45 }
46
47 /**
48 * @return this buffer as short buffer
49 */
51 return ShortBuffer(this);
52 }
53
54public:
55 /**
56 * Public constructor
57 * @param capacity capacity
58 */
59 inline ByteBuffer(int32_t capacity) : Buffer(capacity) {
60 }
61
62 /**
63 * Public constructor
64 * @param data data
65 */
66 inline ByteBuffer(vector<uint8_t>* data) : Buffer(data) {
67 }
68};
Base class of buffers.
Definition: Buffer.h:20
Byte buffer class.
Definition: ByteBuffer.h:24
ByteBuffer(int32_t capacity)
Public constructor.
Definition: ByteBuffer.h:59
static ByteBuffer * allocate(int32_t capacity)
Allocate byte buffer.
Definition: ByteBuffer.h:29
ShortBuffer asShortBuffer()
Definition: ByteBuffer.h:50
FloatBuffer asFloatBuffer()
Definition: ByteBuffer.h:36
ByteBuffer(vector< uint8_t > *data)
Public constructor.
Definition: ByteBuffer.h:66
Float buffer class.
Definition: FloatBuffer.h:18
Integer buffer class.
Definition: IntBuffer.h:14
Short buffer class.
Definition: ShortBuffer.h:14