LeviLamina
Loading...
Searching...
No Matches
EditorPersistenceServiceV2Provider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/common/editor/PersistenceGroupType.h"
7#include "mc/common/editor/PersistenceScope.h"
8#include "mc/deps/game_refs/StackRefResult.h"
9#include "mc/deps/scripting/runtime/Result_deprecated.h"
10
11// auto generated forward declare list
12// clang-format off
13namespace Editor::Services { class PersistenceGroup; }
14// clang-format on
15
16namespace Editor::Services {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~EditorPersistenceServiceV2Provider() = default;
24
25 // vIndex: 1
26 virtual ::Scripting::Result_deprecated<::StackRefResult<::Editor::Services::PersistenceGroup>> getOrCreateGroup(
27 ::std::string const&,
28 ::Editor::Services::PersistenceScope,
29 ::std::optional<int>,
30 ::std::optional<::Editor::Services::PersistenceGroupType>
31 ) = 0;
32
33 // vIndex: 2
34 virtual ::Scripting::Result_deprecated<::StackRefResult<::Editor::Services::PersistenceGroup>> createGroup(
35 ::std::string const&,
36 ::Editor::Services::PersistenceScope,
37 ::std::optional<int>,
38 ::std::optional<::Editor::Services::PersistenceGroupType>
39 ) = 0;
40
41 // vIndex: 3
42 virtual ::Scripting::Result_deprecated<::StackRefResult<::Editor::Services::PersistenceGroup>>
43 getGroup(::std::string const&, ::Editor::Services::PersistenceScope, ::std::optional<int>) = 0;
44
45 // vIndex: 5
46 virtual ::Scripting::Result_deprecated<void>
47 deleteGroup(::std::string const&, ::Editor::Services::PersistenceScope, ::std::optional<int>) = 0;
48
49 // vIndex: 4
50 virtual ::Scripting::Result_deprecated<void>
52
53 // vIndex: 6
54 virtual ::std::vector<::StackRefResult<::Editor::Services::PersistenceGroup>> fetchGroups(
55 ::std::optional<::std::string>,
56 ::std::optional<::std::string>,
57 ::std::optional<::Editor::Services::PersistenceScope>,
58 ::std::optional<int>
59 ) = 0;
60 // NOLINTEND
61
62public:
63 // virtual function thunks
64 // NOLINTBEGIN
65
66 // NOLINTEND
67};
68
69} // namespace Editor::Services
Definition EditorPersistenceServiceV2Provider.h:18
Definition StackRefResult.h:7