| 6 | using namespace Json; |
| 7 | |
| 8 | static void readString(const QJsonObject &root, const QString &key, QString &variable) |
| 9 | { |
| 10 | if (root.contains(key)) |
| 11 | { |
| 12 | variable = requireString(root.value(key)); |
| 13 | } |
| 14 | } |
| 15 | |
| 16 | LibraryPtr OneSixVersionFormat::libraryFromJson(ProblemContainer & problems, const QJsonObject &libObj, const QString &filename) |
| 17 | { |
no test coverage detected