class NotePairScoreElement { public: MIDI_msg msg; NotePairScoreTime dur; void play(NotePairScoreScale, ScheduleTime) const; NotePairScoreElement& operator=(const NotePairScoreElement& npse); Bool operator==(const NotePairScoreElement& npse) const; };
MIDI_msg msg
NotePairScoreTime dur
void play(NotePairScoreScale scale, ScheduleTime now) const
NotePairScoreElement
's
MIDI_msg
to be played out, and, if it is a note-pair, the
corresponding note-off to be scheduled. scale
should be
the current scale of the score, and now
should be the
current time.
NotePairScoreElement& operator=(const NotePairScoreElement&
npse)
NotePairScoreElement
to have the
same contents as npse
.
Bool operator==(const NotePairScoreElement& npse)
const
True
if npse
has the same
contents as this NotePairScoreElement
.