LeviLamina
Loading...
Searching...
No Matches
LowMemoryReport.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5struct LowMemoryReport {
6public:
7 // member variables
8 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 LowMemoryReport& operator=(LowMemoryReport const&);
25 LowMemoryReport(LowMemoryReport const&);
26 LowMemoryReport();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31#ifdef LL_PLAT_C
32 MCNAPI ~LowMemoryReport();
33#endif
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39#ifdef LL_PLAT_C
40 MCNAPI void $dtor();
41#endif
42 // NOLINTEND
43};
Definition Alias.h:14