LeviLamina
Loading...
Searching...
No Matches
StringCompressor.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace RakNet {
6
8public:
9 // member variables
10 // NOLINTBEGIN
12 // NOLINTEND
13
14public:
15 // prevent constructor by default
16 StringCompressor& operator=(StringCompressor const&);
18
19public:
20 // member functions
21 // NOLINTBEGIN
22 MCAPI StringCompressor();
23 // NOLINTEND
24
25public:
26 // static functions
27 // NOLINTBEGIN
28 MCAPI static void RemoveReference();
29 // NOLINTEND
30
31public:
32 // static variables
33 // NOLINTBEGIN
34 MCAPI static ::RakNet::StringCompressor*& instance();
35
36 MCAPI static int& referenceCount();
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCAPI void* $ctor();
43 // NOLINTEND
44};
45
46} // namespace RakNet
Definition StringCompressor.h:7
Definition Alias.h:14