LeviLamina
Loading...
Searching...
No Matches
CommandOutputObserver.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
10class CommandOrigin;
11class CommandOutput;
12namespace Core { class SingleThreadedLock; }
13// clang-format on
14
15namespace CodeBuilder {
16
18: public ::Core::Observer<::CodeBuilder::CommandOutputObserver, ::Core::SingleThreadedLock> {
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 2
23 virtual void onCommand(::CommandOrigin const&, ::CommandOutput const&) = 0;
24
25 // vIndex: 0
26 virtual ~CommandOutputObserver() /*override*/ = default;
27 // NOLINTEND
28
29public:
30 // destructor thunk
31 // NOLINTBEGIN
32
33 // NOLINTEND
34
35public:
36 // virtual function thunks
37 // NOLINTBEGIN
38
39 // NOLINTEND
40};
41
42} // namespace CodeBuilder
Definition CommandOutputObserver.h:18
Definition CommandOrigin.h:32
Definition CommandOutput.h:19
Definition Observer.h:9