LeviLamina
Loading...
Searching...
No Matches
TelemetryServiceProvider.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Editor::Services {
6
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 // vIndex: 0
12 virtual ~TelemetryServiceProvider() = default;
13
14 // vIndex: 1
15 virtual void fireEditorEventToolActivated(::std::string const&) = 0;
16
17 // vIndex: 2
18 virtual void fireUndoEvent(::std::string const&) = 0;
19
20 // vIndex: 3
21 virtual void fireRedoEvent(::std::string const&) = 0;
22
23 // vIndex: 4
24 virtual void fireEditorKeybindUpdate(::std::string const&, int const, int const) = 0;
25
26 // vIndex: 5
27 virtual void fireEditorScriptEvent(::std::string const&, ::std::string const&, ::std::string const&) = 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};
42
43} // namespace Editor::Services
Definition TelemetryServiceProvider.h:7