LeviLamina
Loading...
Searching...
No Matches
IOperation.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; }
11// clang-format on
12
13namespace Editor::Transactions {
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ~IOperation() = default;
20
21 virtual ::std::string_view getName() = 0;
22
23 virtual ::Scripting::Result_deprecated<void> _undo(::Editor::ServiceProviderCollection& services) = 0;
24
25 virtual ::Scripting::Result_deprecated<void> _redo(::Editor::ServiceProviderCollection& services) = 0;
26 // NOLINTEND
27
28public:
29 // virtual function thunks
30 // NOLINTBEGIN
31
32 // NOLINTEND
33};
34
35} // namespace Editor::Transactions
Definition ServiceProviderCollection.h:7
Definition IOperation.h:15