PlayListeningHandler.hpp
1 #pragma once
2 #include <Explorer/Listening/ListeningHandler.hpp>
3 
4 namespace Device
5 {
6 class DeviceList;
7 }
8 namespace Execution
9 {
10 class DocumentPlugin;
11 
13 {
14  const Execution::DocumentPlugin& m_executor;
15 
16 public:
18 
19 private:
20  void setListening(
21  Device::DeviceInterface& dev, const State::Address& addr, bool b) override;
22 
23  void
24  setListening(Device::DeviceInterface& dev, const Device::Node& addr, bool b) override;
25 
26  void addToListening(
27  Device::DeviceInterface& dev, const std::vector<State::Address>& v) override;
28 };
29 }
Definition: DeviceInterface.hpp:66
Definition: plugins/score-plugin-engine/Execution/DocumentPlugin.hpp:60
Definition: PlayListeningHandler.hpp:13
Definition: ListeningHandler.hpp:21
Manipulation of Devices from Qt.
Definition: AddressSettings.cpp:14
Components used for the execution of a score.
Definition: ProcessComponent.cpp:12
The Address struct.
Definition: Address.hpp:58