LeviLamina
Loading...
Searching...
No Matches
ContextConfig.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
8public:
9 // member variables
10 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
26
27public:
28 // member functions
29 // NOLINTBEGIN
31
33
34 MCAPI ::Scripting::ContextConfig& operator=(::Scripting::ContextConfig const&);
35
36 MCAPI ::Scripting::ContextConfig& operator=(::Scripting::ContextConfig&&);
37
38 MCAPI ~ContextConfig();
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCAPI void* $ctor(::Scripting::ContextConfig&&);
45
46 MCAPI void* $ctor(::Scripting::ContextConfig const&);
47 // NOLINTEND
48
49public:
50 // destructor thunk
51 // NOLINTBEGIN
52 MCAPI void $dtor();
53 // NOLINTEND
54};
55
56} // namespace Scripting
Definition ContextConfig.h:7
Definition Alias.h:14