| 115 | } |
| 116 | |
| 117 | void serializeFormatVersion(QJsonObject& obj, Meta::MetadataVersion version) |
| 118 | { |
| 119 | if (version == MetadataVersion::Invalid) { |
| 120 | return; |
| 121 | } |
| 122 | obj.insert("formatVersion", int(version)); |
| 123 | } |
| 124 | |
| 125 | void parseIndex(const QJsonObject& obj, Index* ptr) |
| 126 | { |
no test coverage detected