LeviLamina
Loading...
Searching...
No Matches
TypeNameInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Scripting {
6
8public:
9 // member variables
10 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 TypeNameInfo& operator=(TypeNameInfo const&);
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI TypeNameInfo(::std::string bindingName, ::std::string typeName, bool bound);
26
27 MCAPI ~TypeNameInfo();
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCAPI void* $ctor(::std::string bindingName, ::std::string typeName, bool bound);
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCFOLD void $dtor();
40 // NOLINTEND
41};
42
43} // namespace Scripting
Definition TypeNameInfo.h:7
Definition Alias.h:14