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