LeviLamina
Loading...
Searching...
No Matches
BytePool.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/raknet/data_structures/MemoryPool.h"
7
8namespace DataStructures {
9
10class BytePool {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 32, ::DataStructures::MemoryPool<uchar[128]>> pool128;
15 ::ll::TypedStorage<8, 32, ::DataStructures::MemoryPool<uchar[512]>> pool512;
16 ::ll::TypedStorage<8, 32, ::DataStructures::MemoryPool<uchar[2048]>> pool2048;
17 ::ll::TypedStorage<8, 32, ::DataStructures::MemoryPool<uchar[8192]>> pool8192;
18 // NOLINTEND
19};
20
21} // namespace DataStructures
Definition BytePool.h:10