LeviLamina
Loading...
Searching...
No Matches
CloudAllocator.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace RakNet { struct CloudQueryRow; }
8// clang-format on
9
10namespace RakNet {
11
13public:
14 // virtual functions
15 // NOLINTBEGIN
16 virtual ~CloudAllocator() = default;
17
18 virtual ::RakNet::CloudQueryRow* AllocateCloudQueryRow();
19
20 virtual void DeallocateCloudQueryRow(::RakNet::CloudQueryRow*);
21
22 virtual uchar* AllocateRowData(uint);
23
24 virtual void DeallocateRowData(void*);
25 // NOLINTEND
26
27public:
28 // virtual function thunks
29 // NOLINTBEGIN
30
31 // NOLINTEND
32};
33
34} // namespace RakNet
Definition CloudAllocator.h:12
Definition CloudQueryRow.h:7