LeviLamina
Loading...
Searching...
No Matches
StrongObjectHandle.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { class LifetimeRegistry; }
8namespace Scripting { struct ObjectHandle; }
9// clang-format on
10
11namespace Scripting {
12
14public:
15 // member variables
16 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI void _addReference();
30
31 MCAPI void _removeReference();
32
33 MCFOLD ::Scripting::LifetimeRegistry* getLifetimeRegistry() const;
34
35 MCAPI ::Scripting::StrongObjectHandle& operator=(::Scripting::StrongObjectHandle const& rhs);
36
37 MCAPI ::Scripting::StrongObjectHandle& operator=(::Scripting::StrongObjectHandle&& rhs);
38
39 MCAPI ~StrongObjectHandle();
40 // NOLINTEND
41
42public:
43 // static variables
44 // NOLINTBEGIN
45 MCAPI static ::Scripting::StrongObjectHandle const& InvalidHandle();
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCAPI void $dtor();
52 // NOLINTEND
53};
54
55} // namespace Scripting
Definition StrongObjectHandle.h:13
Definition Alias.h:14