TDME2
1.9.121
src
tdme
utilities
ByteBuffer.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <vector>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/utilities/fwd-tdme.h
>
7
#include <
tdme/utilities/Buffer.h
>
8
#include <
tdme/utilities/FloatBuffer.h
>
9
#include <
tdme/utilities/IntBuffer.h
>
10
#include <
tdme/utilities/ShortBuffer.h
>
11
12
using
std::vector;
13
14
using
tdme::utilities::Buffer
;
15
using
tdme::utilities::FloatBuffer
;
16
using
tdme::utilities::IntBuffer
;
17
using
tdme::utilities::ShortBuffer
;
18
19
/**
20
* Byte buffer class
21
* @author Andreas Drewke
22
*/
23
class
tdme::utilities::ByteBuffer
:
public
Buffer
24
{
25
public
:
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
*/
36
inline
FloatBuffer
asFloatBuffer
() {
37
return
FloatBuffer
(
this
);
38
}
39
40
/**
41
* @return this buffer as int buffer
42
*/
43
inline
IntBuffer
asIntBuffer
() {
44
return
IntBuffer
(
this
);
45
}
46
47
/**
48
* @return this buffer as short buffer
49
*/
50
inline
ShortBuffer
asShortBuffer
() {
51
return
ShortBuffer
(
this
);
52
}
53
54
public
:
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
};
Buffer.h
FloatBuffer.h
IntBuffer.h
ShortBuffer.h
tdme::utilities::Buffer
Base class of buffers.
Definition:
Buffer.h:20
tdme::utilities::ByteBuffer
Byte buffer class.
Definition:
ByteBuffer.h:24
tdme::utilities::ByteBuffer::asIntBuffer
IntBuffer asIntBuffer()
Definition:
ByteBuffer.h:43
tdme::utilities::ByteBuffer::ByteBuffer
ByteBuffer(int32_t capacity)
Public constructor.
Definition:
ByteBuffer.h:59
tdme::utilities::ByteBuffer::allocate
static ByteBuffer * allocate(int32_t capacity)
Allocate byte buffer.
Definition:
ByteBuffer.h:29
tdme::utilities::ByteBuffer::asShortBuffer
ShortBuffer asShortBuffer()
Definition:
ByteBuffer.h:50
tdme::utilities::ByteBuffer::asFloatBuffer
FloatBuffer asFloatBuffer()
Definition:
ByteBuffer.h:36
tdme::utilities::ByteBuffer::ByteBuffer
ByteBuffer(vector< uint8_t > *data)
Public constructor.
Definition:
ByteBuffer.h:66
tdme::utilities::FloatBuffer
Float buffer class.
Definition:
FloatBuffer.h:18
tdme::utilities::IntBuffer
Integer buffer class.
Definition:
IntBuffer.h:14
tdme::utilities::ShortBuffer
Short buffer class.
Definition:
ShortBuffer.h:14
tdme.h
fwd-tdme.h
Generated by
1.9.3