LeviLamina
Loading...
Searching...
No Matches
BootstrapConfig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
7class BootstrapConfig {
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&);
43 BootstrapConfig(BootstrapConfig const&);
44 BootstrapConfig();
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCNAPI_C ::Bedrock::BootstrapConfig::LoadResult _makeBootstrapError(char const*, ...);
50
51 MCNAPI_C ::Bedrock::BootstrapConfig::LoadResult initialize(char const* fileName);
52 // NOLINTEND
53
54public:
55 // static functions
56 // NOLINTBEGIN
57 MCNAPI_C static ::Bedrock::BootstrapConfig& getSharedInstance();
58 // NOLINTEND
59};
60
61} // namespace Bedrock
Definition BootstrapConfig.h:15
Definition Alias.h:14