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 virtual void onConnected(::std::string const&) = 0;
20
21 virtual void onConnectionFailed(::std::string const&) = 0;
22
23 virtual void onConnectionClosed() = 0;
24
25 virtual void onDuplicateRequestCancel() = 0;
26
27#ifdef LL_PLAT_S
28 virtual ~AutomationObserver() /*override*/ = default;
29#else // LL_PLAT_C
30 virtual ~AutomationObserver() /*override*/;
31#endif
32
33 // NOLINTEND
34
35public:
36 // destructor thunk
37 // NOLINTBEGIN
38 MCNAPI void $dtor();
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
Definition SingleThreadedLock.h:7