| 183 | } |
| 184 | |
| 185 | void StreamDBOperator::Clear() { |
| 186 | using Storage = decltype(db_->GetStorageTypeValue()); |
| 187 | auto storage = std::any_cast<Storage>(db_->GetDbStorage()); |
| 188 | storage.remove_all<spvr::SpvrStream>(); |
| 189 | } |
| 190 | |
| 191 | std::string StreamDBOperator::GenUUID() { |
| 192 | QUuid id = QUuid::createUuid(); |
nothing calls this directly
no test coverage detected