LeviLamina
Loading...
Searching...
No Matches
IPendingOperation.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/Result_deprecated.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Editor { class ServiceProviderCollection; }
11namespace Editor::Transactions { class IOperation; }
12// clang-format on
13
14namespace Editor::Transactions {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 0
21 virtual ~IPendingOperation() = default;
22
23 // vIndex: 1
24 virtual ::std::unique_ptr<::Editor::Transactions::IOperation> _commit(::Editor::ServiceProviderCollection&) = 0;
25
26 // vIndex: 2
27 virtual ::Scripting::Result_deprecated<bool> _discard(::Editor::ServiceProviderCollection&) = 0;
28 // NOLINTEND
29
30public:
31 // destructor thunk
32 // NOLINTBEGIN
33
34 // NOLINTEND
35
36public:
37 // virtual function thunks
38 // NOLINTBEGIN
39
40 // NOLINTEND
41
42public:
43 // vftables
44 // NOLINTBEGIN
45 MCAPI static void** $vftable();
46 // NOLINTEND
47};
48
49} // namespace Editor::Transactions
Definition ServiceProviderCollection.h:7
Definition IPendingOperation.h:16