LeviLamina
Loading...
Searching...
No Matches
AutomationObserver.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/Observer.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Core { class SingleThreadedLock; }
11// clang-format on
12
13namespace Automation {
14
15class AutomationObserver : public ::Core::Observer<::Automation::AutomationObserver, ::Core::SingleThreadedLock> {
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 2
20 virtual void onConnected(::std::string const&) = 0;
21
22 // vIndex: 3
23 virtual void onConnectionFailed(::std::string const&) = 0;
24
25 // vIndex: 4
26 virtual void onConnectionClosed() = 0;
27
28 // vIndex: 5
29 virtual void onDuplicateRequestCancel() = 0;
30
31 // vIndex: 0
32 virtual ~AutomationObserver() /*override*/ = default;
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38
39 // NOLINTEND
40
41public:
42 // virtual function thunks
43 // NOLINTBEGIN
44
45 // NOLINTEND
46};
47
48} // namespace Automation
Definition AutomationObserver.h:15
Definition Observer.h:9