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 MCAPI ResultAny();
24
25 MCAPI ::entt::meta_any toAny() const;
26
27 MCAPI ::entt::meta_any toErrorAny() const;
28
29 MCAPI ~ResultAny();
30 // NOLINTEND
31
32public:
33 // static functions
34 // NOLINTBEGIN
35 MCAPI static ::Scripting::ResultAny makeErrorFromAny(::entt::meta_any&& errorAny);
36
37 MCAPI static ::Scripting::ResultAny makeResultFromAny(::entt::meta_any const& resultAny);
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor();
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCFOLD void $dtor();
50 // NOLINTEND
51};
52
53} // namespace Scripting
Definition ResultAny.h:7
Definition Alias.h:14