LeviLamina
Loading...
Searching...
No Matches
DebugDump.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cohtml {
6
7struct DebugDump {
8public:
9 // DebugDump inner types define
10 enum class DumpFlags : int {
11 None = 0,
12 IncludeStyles = 2,
13 IncludeLayout = 4,
14 };
15
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::UntypedStorage<8, 8> mUnk21657e;
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 DebugDump& operator=(DebugDump const&);
25 DebugDump(DebugDump const&);
26 DebugDump();
27
28public:
29 // virtual functions
30 // NOLINTBEGIN
31 virtual void Release() = 0;
32
33 virtual ~DebugDump() = default;
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39
40 // NOLINTEND
41};
42
43} // namespace cohtml
Definition DebugDump.h:7