Mercurial > hg > sonic-annotator
comparison runner/MIDIFeatureWriter.h @ 195:3f7c65f26559
Fixes from last merge
author | Chris Cannam |
---|---|
date | Wed, 26 Aug 2015 21:46:52 +0100 |
parents | 977b7007071f |
children | e39307a8d22d |
comparison
equal
deleted
inserted
replaced
194:c71d6ae15882 | 195:3f7c65f26559 |
---|---|
50 public: | 50 public: |
51 TrivialNoteExportable(NoteList notes) : m_notes(notes) { } | 51 TrivialNoteExportable(NoteList notes) : m_notes(notes) { } |
52 virtual NoteList getNotes() const { | 52 virtual NoteList getNotes() const { |
53 return m_notes; | 53 return m_notes; |
54 } | 54 } |
55 virtual NoteList getNotesWithin(int, int) const { | 55 virtual NoteList getNotesWithin(sv_frame_t, sv_frame_t) const { |
56 // Not required by MIDIFileWriter, not supported | 56 // Not required by MIDIFileWriter, not supported |
57 return NoteList(); | 57 return NoteList(); |
58 } | 58 } |
59 private: | 59 private: |
60 NoteList m_notes; | 60 NoteList m_notes; |