LeviLamina
Loading...
Searching...
No Matches
EditorJigsawRegistry.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/common/editor/JigsawJsonType.h"
7
8// auto generated forward declare list
9// clang-format off
11namespace Editor::Services { struct EditorRegistryFile; }
12// clang-format on
13
14namespace Editor::Services {
15
16struct EditorJigsawRegistry {
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 EditorJigsawRegistry& operator=(EditorJigsawRegistry const&);
27 EditorJigsawRegistry(EditorJigsawRegistry const&);
28 EditorJigsawRegistry();
29
30public:
31 // member functions
32 // NOLINTBEGIN
34 ::std::unique_ptr<::JigsawStructureRegistry> registry,
35 ::std::map<::Editor::Services::JigsawJsonType, ::std::vector<::Editor::Services::EditorRegistryFile>> jigsawJson
36 );
37
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCNAPI void* $ctor(
45 ::std::unique_ptr<::JigsawStructureRegistry> registry,
46 ::std::map<::Editor::Services::JigsawJsonType, ::std::vector<::Editor::Services::EditorRegistryFile>> jigsawJson
47 );
48 // NOLINTEND
49
50public:
51 // destructor thunk
52 // NOLINTBEGIN
53 MCNAPI void $dtor();
54 // NOLINTEND
55};
56
57} // namespace Editor::Services
Definition JigsawStructureRegistry.h:22
MCAPI EditorJigsawRegistry(::std::unique_ptr<::JigsawStructureRegistry > registry, ::std::map<::Editor::Services::JigsawJsonType, ::std::vector<::Editor::Services::EditorRegistryFile > > jigsawJson)
MCAPI void * $ctor(::std::unique_ptr<::JigsawStructureRegistry > registry, ::std::map<::Editor::Services::JigsawJsonType, ::std::vector<::Editor::Services::EditorRegistryFile > > jigsawJson)
Definition EditorRegistryFile.h:7
Definition Alias.h:14