| 10 | namespace Json |
| 11 | { |
| 12 | void write(const QJsonDocument &doc, const QString &filename) |
| 13 | { |
| 14 | FS::write(filename, doc.toJson()); |
| 15 | } |
| 16 | void write(const QJsonObject &object, const QString &filename) |
| 17 | { |
| 18 | write(QJsonDocument(object), filename); |
no test coverage detected