score
Home
Classes
Namespaces
Files
Loading...
Searching...
No Matches
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
12
class
PlayListeningHandler
final :
public
Explorer::ListeningHandler
13
{
14
const
Execution::DocumentPlugin
& m_executor;
15
16
public
:
17
PlayListeningHandler
(
const
Execution::DocumentPlugin
& docpl);
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
}
Device::DeviceInterface
Definition
DeviceInterface.hpp:66
Execution::DocumentPlugin
Definition
plugins/score-plugin-engine/Execution/DocumentPlugin.hpp:61
Execution::PlayListeningHandler
Definition
PlayListeningHandler.hpp:13
Explorer::ListeningHandler
Definition
ListeningHandler.hpp:21
TreeNode< DeviceExplorerNode >
Device
Manipulation of Devices from Qt.
Definition
AddressSettings.cpp:14
Execution
Components used for the execution of a score.
Definition
ProcessComponent.cpp:12
State::Address
The Address struct.
Definition
Address.hpp:58