Class Event¶
Defined in File event.h
Class Documentation¶
-
class
Event
¶ Public Functions
-
Event
()¶
-
Event
(uint32_t time, uint8_t *cue)¶ Constructor. Copies the provided Cue into the Event.
- Parameters
time
: Event’s start time.Cue
: The Cue to run.
-
Event
(const Event &other)¶ Copy constructor. Added to support storing Events in a vector in PixelMaestro Studio.
- Parameters
other
: Event to copy.
-
Event &
operator=
(const Event &other)¶ Copy assignment operator. Added to support storing Events in a vector in PixelMaestro Studio.
-
~Event
()¶
-
uint8_t *
get_cue
() const¶ Returns the Event’s Cue. The Show passes this to the CueController when the Event runs.
- Return
Cue.
-