Loading...
Searching...
No Matches
ExecutionState.hpp
1#pragma once
2
3#include <verdigris>
4namespace Scenario
5{
6enum class IntervalExecutionState : uint8_t
7{
8 Enabled = 0,
9 Disabled = 1,
10 Muted = 2
11};
12enum class IntervalExecutionEvent : uint8_t
13{
14 Enabled,
15 Disabled,
16 Muted,
17 Unmuted,
18 Playing,
19 Stopped,
20 Paused,
21 Resumed,
22 Finished
23};
24}
25Q_DECLARE_METATYPE(Scenario::IntervalExecutionState)
26W_REGISTER_ARGTYPE(Scenario::IntervalExecutionState)
27
28Q_DECLARE_METATYPE(Scenario::IntervalExecutionEvent)
29W_REGISTER_ARGTYPE(Scenario::IntervalExecutionEvent)
Main plug-in of score.
Definition score-plugin-dataflow/Dataflow/PortItem.hpp:13