LeviLamina
Loading...
Searching...
No Matches
BootstrapConfig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
8public:
9 // BootstrapConfig inner types declare
10 // clang-format off
11 struct LoadResult;
12 // clang-format on
13
14 // BootstrapConfig inner types define
15 struct LoadResult {
16 public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23 public:
24 // prevent constructor by default
25 LoadResult& operator=(LoadResult const&);
26 LoadResult(LoadResult const&);
27 LoadResult();
28 };
29
30public:
31 // member variables
32 // NOLINTBEGIN
38 // NOLINTEND
39
40public:
41 // prevent constructor by default
42 BootstrapConfig& operator=(BootstrapConfig const&);
45};
46
47} // namespace Bedrock
Definition BootstrapConfig.h:7
Definition BootstrapConfig.h:15
Definition Alias.h:14