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