LeviLamina
Loading...
Searching...
No Matches
EnableNonOwnerReferences.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
7class EnableNonOwnerReferences {
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
23public:
24 // member variables
25 // NOLINTBEGIN
26 ::std::shared_ptr<::Bedrock::EnableNonOwnerReferences::ControlBlock> mControlBlock;
27 // NOLINTEND
28
29public:
30 EnableNonOwnerReferences& operator=(EnableNonOwnerReferences const&) = default;
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~EnableNonOwnerReferences();
36 // NOLINTEND
37
38public:
39 // member functions
40 // NOLINTBEGIN
41 MCAPI EnableNonOwnerReferences();
42
43 MCAPI EnableNonOwnerReferences(::Bedrock::EnableNonOwnerReferences const&);
44 // NOLINTEND
45
46public:
47 // constructor thunks
48 // NOLINTBEGIN
49 MCFOLD void* $ctor();
50
51 MCFOLD void* $ctor(::Bedrock::EnableNonOwnerReferences const&);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCFOLD void $dtor();
58 // NOLINTEND
59
60public:
61 // vftables
62 // NOLINTBEGIN
63 MCNAPI static void** $vftable();
64 // NOLINTEND
65};
66
67} // namespace Bedrock
Definition EnableNonOwnerReferences.h:7
static MCAPI void ** $vftable()
Definition EnableNonOwnerReferences.h:15