LeviLamina
Loading...
Searching...
No Matches
ResultAny.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
7class ResultAny {
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 ResultAny& operator=(ResultAny const&);
18 ResultAny(ResultAny const&);
19
20public:
21 // member functions
22 // NOLINTBEGIN
23 MCNAPI ResultAny();
24
25 MCNAPI ::entt::meta_any toAny();
26
27 MCNAPI ::entt::meta_any toAny() const;
28
29 MCNAPI ::entt::meta_any toErrorAny() const;
30
31 MCNAPI ~ResultAny();
32 // NOLINTEND
33
34public:
35 // static functions
36 // NOLINTBEGIN
37 MCNAPI static ::Scripting::ResultAny makeErrorFromAny(::entt::meta_any&& errorAny);
38
39 MCNAPI static ::Scripting::ResultAny makeResultFromAny(::entt::meta_any const& resultAny);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCNAPI void* $ctor();
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53};
54
55} // namespace Scripting
Definition ResultAny.h:7
MCAPI void $dtor()
MCAPI::entt::meta_any toErrorAny() const
MCAPI void * $ctor()
MCAPI::entt::meta_any toAny() const
static MCAPI ::Scripting::ResultAny makeErrorFromAny(::entt::meta_any &&errorAny)
MCAPI::entt::meta_any toAny()
static MCAPI ::Scripting::ResultAny makeResultFromAny(::entt::meta_any const &resultAny)
Definition Alias.h:14