save/sync data with binary arraymap

This commit is contained in:
itsmattkc
2023-02-19 20:52:07 -08:00
parent b8ee27e1cb
commit 3b822c1110
5 changed files with 170 additions and 28 deletions
+10
View File
@@ -134,4 +134,14 @@ void Block::InvalidateCache(const TimeRange& range, const QString& from, int ele
super::InvalidateCache(r, from, element, options);
}
void Block::set_previous_next(Block *previous, Block *next)
{
if (previous) {
previous->set_next(next);
}
if (next) {
next->set_previous(previous);
}
}
}