LeviLamina
Loading...
Searching...
No Matches
ModuleDependency.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Scripting { struct ModuleDescriptor; }
8// clang-format on
9
10namespace Scripting {
11
13public:
14 // member variables
15 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 ModuleDependency& operator=(ModuleDependency const&);
26
27public:
28 // member functions
29 // NOLINTBEGIN
31
32 MCNAPI ::std::optional<::Scripting::ModuleDescriptor> getDescriptor() const;
33
34 MCNAPI ::std::string toString() const;
35
37 // NOLINTEND
38
39public:
40 // constructor thunks
41 // NOLINTBEGIN
42 MCNAPI void* $ctor(::Scripting::ModuleDescriptor descriptor);
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48 MCNAPI void $dtor();
49 // NOLINTEND
50};
51
52} // namespace Scripting
Definition ModuleDependency.h:12
MCAPI ::std::optional<::Scripting::ModuleDescriptor > getDescriptor() const
MCAPI::std::string toString() const
MCAPI void * $ctor(::Scripting::ModuleDescriptor descriptor)
MCAPI ModuleDependency(::Scripting::ModuleDescriptor descriptor)
Definition ModuleDescriptor.h:7
Definition Alias.h:14