-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPgCollection.h
More file actions
63 lines (53 loc) · 768 Bytes
/
PgCollection.h
File metadata and controls
63 lines (53 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#pragma once
namespace rage {
template<typename T>
class pgCollection
{
private:
T* m_pData;
uint16_t m_pCount;
uint16_t m_pSize;
public:
T* begin()
{
return m_pData;
}
T* end()
{
return (m_pData + m_pCount);
}
T* at(uint16_t index)
{
return &m_pData[index];
}
};
template<typename T>
class pgPtrCollection
{
private:
T** m_pData;
uint16_t m_pCount;
uint16_t m_pSize;
public:
T** begin()
{
return m_pData;
}
T** end()
{
return (m_pData + m_pCount);
}
T* at(uint16_t index)
{
return m_pData[index];
}
int16_t count()
{
return m_pCount;
}
void set(uint16_t index, T* ptr)
{
m_pData[index] = ptr;
}
};
}