| 177 | } |
| 178 | |
| 179 | void StreamDBOperator::DeleteStream(int id) { |
| 180 | using Storage = decltype(db_->GetStorageTypeValue()); |
| 181 | auto storage = std::any_cast<Storage>(db_->GetDbStorage()); |
| 182 | storage.remove<spvr::SpvrStream>(id); |
| 183 | } |
| 184 | |
| 185 | void StreamDBOperator::Clear() { |
| 186 | using Storage = decltype(db_->GetStorageTypeValue()); |
nothing calls this directly
no test coverage detected