| 120 | } |
| 121 | |
| 122 | void serializeFormatVersion(QJsonObject& obj, Meta::MetadataVersion version) |
| 123 | { |
| 124 | if(version == MetadataVersion::Invalid) |
| 125 | { |
| 126 | return; |
| 127 | } |
| 128 | obj.insert("formatVersion", int(version)); |
| 129 | } |
| 130 | |
| 131 | void parseIndex(const QJsonObject &obj, Index *ptr) |
| 132 | { |
no test coverage detected