| 189 | } |
| 190 | |
| 191 | std::string StreamDBOperator::GenUUID() { |
| 192 | QUuid id = QUuid::createUuid(); |
| 193 | QString str_id = id.toString(); |
| 194 | str_id.remove("{").remove("}").remove("-"); |
| 195 | return str_id.toStdString(); |
| 196 | } |
| 197 | |
| 198 | int StreamDBOperator::RandomColor() { |
| 199 | // Colors form [Claude Monet]'s arts |
nothing calls this directly
no outgoing calls
no test coverage detected