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