1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-02-07 20:22:13 +01:00

More pure virtuals in Track, supply Note and Time overrides

This commit is contained in:
Paul Licameli
2017-03-31 14:54:55 -04:00
parent ad34145ded
commit f1b354b141
5 changed files with 81 additions and 14 deletions

View File

@@ -534,6 +534,18 @@ bool NoteTrack::Paste(double t, const Track *src)
return true;
}
bool NoteTrack::Silence(double, double)
{
// to do
return false;
}
bool NoteTrack::InsertSilence(double, double)
{
// to do
return false;
}
// Call this function to manipulate the underlying sequence data. This is
// NOT the function that handles horizontal dragging.
bool NoteTrack::Shift(double t) // t is always seconds