Add read support for A2R v2 files.

This commit is contained in:
dg
2023-04-07 15:00:20 +00:00
parent c2c04862a2
commit 4c776d584b
10 changed files with 231 additions and 34 deletions

View File

@@ -31,20 +31,6 @@ private:
int _count = 0;
};
class EmptyFluxSourceIterator : public FluxSourceIterator
{
bool hasNext() const override
{
return false;
}
std::unique_ptr<const Fluxmap> next() override
{
Error() << "no flux to read";
throw nullptr;
}
};
class MemoryFluxSource : public FluxSource
{
public: