| 42 | |
| 43 | namespace Json { |
| 44 | void write(const QJsonDocument& doc, const QString& filename) |
| 45 | { |
| 46 | FS::write(filename, doc.toJson()); |
| 47 | } |
| 48 | void write(const QJsonObject& object, const QString& filename) |
| 49 | { |
| 50 | write(QJsonDocument(object), filename); |
no test coverage detected