LeviLamina
Loading...
Searching...
No Matches
EditorServiceList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/Result.h"
7#include "mc/deps/scripting/runtime/Result_deprecated.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace Editor { class ServiceProviderCollection; }
12namespace Editor::Services { class IEditorService; }
13// clang-format on
14
15namespace Editor::Services {
16
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 EditorServiceList& operator=(EditorServiceList const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 0
34 virtual ~EditorServiceList();
35
36 // vIndex: 1
37 virtual ::Editor::ServiceProviderCollection& getServiceProviders() = 0;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCAPI ::Scripting::Result<void> _destroyServices();
44
45 MCAPI ::Scripting::Result<void> _initServices();
46
47 MCAPI ::Scripting::Result<void> _readyServices();
48
49 MCAPI ::Scripting::Result<void>
50 _registerAndInitServiceList(::std::vector<::std::unique_ptr<::Editor::Services::IEditorService>> serviceList);
51
52 MCAPI ::Scripting::Result_deprecated<::Editor::Services::IEditorService*>
53 _registerService(::std::unique_ptr<::Editor::Services::IEditorService> servicePtr);
54 // NOLINTEND
55
56public:
57 // destructor thunk
58 // NOLINTBEGIN
59 MCAPI void $dtor();
60 // NOLINTEND
61
62public:
63 // virtual function thunks
64 // NOLINTBEGIN
65
66 // NOLINTEND
67
68public:
69 // vftables
70 // NOLINTBEGIN
71 MCAPI static void** $vftable();
72 // NOLINTEND
73};
74
75} // namespace Editor::Services
Definition EditorServiceList.h:17
Definition Alias.h:14