LeviLamina
Loading...
Searching...
No Matches
DataBufferAny.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/lifetime_registry/StrongTypedObjectHandle.h"
7#include "mc/deps/scripting/lifetime_registry/TypedObjectHandle.h"
8#include "mc/deps/scripting/script_engine/ScriptValue.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace Scripting { class IObjectInspector; }
13namespace Scripting { class IRuntime; }
14namespace Scripting { class WeakLifetimeScope; }
15namespace Scripting { struct ContextId; }
16namespace Scripting { struct DataBufferHandleType; }
17// clang-format on
18
19namespace Scripting {
20
21class DataBufferAny : public ::Scripting::ScriptValue {
22public:
23 // member variables
24 // NOLINTBEGIN
29 // NOLINTEND
30
31public:
32 // prevent constructor by default
33 DataBufferAny();
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 virtual ~DataBufferAny() /*override*/;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
45
47 ::Scripting::IRuntime* runtime,
48 ::Scripting::ContextId contextId,
52 );
53
54 MCNAPI ::std::optional<::Scripting::TypedObjectHandle<::Scripting::DataBufferHandleType>>
56
57 MCNAPI ::Scripting::DataBufferAny& operator=(::Scripting::DataBufferAny&& rhs);
58
59 MCNAPI ::Scripting::DataBufferAny& operator=(::Scripting::DataBufferAny const& rhs);
60 // NOLINTEND
61
62public:
63 // constructor thunks
64 // NOLINTBEGIN
65 MCNAPI void* $ctor(::Scripting::DataBufferAny const& rhs);
66
67 MCNAPI void* $ctor(
68 ::Scripting::IRuntime* runtime,
69 ::Scripting::ContextId contextId,
73 );
74 // NOLINTEND
75
76public:
77 // destructor thunk
78 // NOLINTBEGIN
79 MCNAPI void $dtor();
80 // NOLINTEND
81
82public:
83 // vftables
84 // NOLINTBEGIN
85 MCNAPI static void** $vftable();
86 // NOLINTEND
87};
88
89} // namespace Scripting
Definition DataBufferAny.h:21
static MCAPI void ** $vftable()
MCAPI ::std::optional<::Scripting::TypedObjectHandle<::Scripting::DataBufferHandleType > > getDataBufferHandle() const
MCAPI::Scripting::DataBufferAny & operator=(::Scripting::DataBufferAny &&rhs)
MCAPI DataBufferAny(::Scripting::DataBufferAny const &rhs)
MCAPI::Scripting::DataBufferAny & operator=(::Scripting::DataBufferAny const &rhs)
MCAPI DataBufferAny(::Scripting::IRuntime *runtime, ::Scripting::ContextId contextId, ::Scripting::WeakLifetimeScope scope, ::Scripting::IObjectInspector *inspector, ::Scripting::StrongTypedObjectHandle<::Scripting::DataBufferHandleType > dataBufferHandle)
MCAPI void * $ctor(::Scripting::DataBufferAny const &rhs)
MCAPI void * $ctor(::Scripting::IRuntime *runtime, ::Scripting::ContextId contextId, ::Scripting::WeakLifetimeScope scope, ::Scripting::IObjectInspector *inspector, ::Scripting::StrongTypedObjectHandle<::Scripting::DataBufferHandleType > dataBufferHandle)
Definition IObjectInspector.h:13
Definition IRuntime.h:37
Definition ScriptValue.h:13
Definition StrongTypedObjectHandle.h:8
Definition WeakLifetimeScope.h:14
Definition ContextId.h:7
Definition DataBufferHandleType.h:7
Definition Alias.h:14