Hopefully add support for giving the reader a set of required sectors, so if

one is missing then we can tell and the track can be reread.
This commit is contained in:
David Given
2020-02-21 22:14:44 +01:00
parent 38700c79fc
commit 323da8272a
11 changed files with 167 additions and 36 deletions

View File

@@ -88,3 +88,10 @@ void AbstractDecoder::pushRecord(const Fluxmap::Position& start, const Fluxmap::
_track->rawrecords.push_back(record);
_fmr->seek(here);
}
std::set<unsigned> AbstractDecoder::requiredSectors(Track& track) const
{
static std::set<unsigned> empty;
return empty;
}