LeviLamina
Loading...
Searching...
No Matches
EnableNonOwnerReferences.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
8public:
9 // EnableNonOwnerReferences inner types declare
10 // clang-format off
11 struct ControlBlock;
12 // clang-format on
13
14 // EnableNonOwnerReferences inner types define
15 struct ControlBlock {
16 public:
17 // member variables
18 // NOLINTBEGIN
19 bool mIsValid;
20 // NOLINTEND
21
22 public:
23 // prevent constructor by default
24 ControlBlock& operator=(ControlBlock const&);
27 };
28
29public:
30 // member variables
31 // NOLINTBEGIN
32 ::std::shared_ptr<::Bedrock::EnableNonOwnerReferences::ControlBlock> mControlBlock;
33 // NOLINTEND
34
35public:
36 EnableNonOwnerReferences& operator=(EnableNonOwnerReferences const&) = default;
37
38public:
39 // virtual functions
40 // NOLINTBEGIN
41 // vIndex: 0
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
49
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCFOLD void* $ctor();
57
58 MCFOLD void* $ctor(::Bedrock::EnableNonOwnerReferences const&);
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCFOLD void $dtor();
65 // NOLINTEND
66
67public:
68 // vftables
69 // NOLINTBEGIN
70 MCAPI static void** $vftable();
71 // NOLINTEND
72};
73
74} // namespace Bedrock
Definition EnableNonOwnerReferences.h:7
Definition EnableNonOwnerReferences.h:15