| 46 | using namespace Json; |
| 47 | |
| 48 | static void readString(const QJsonObject& root, const QString& key, QString& variable) |
| 49 | { |
| 50 | if (root.contains(key)) { |
| 51 | variable = requireString(root.value(key)); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | LibraryPtr OneSixVersionFormat::libraryFromJson(ProblemContainer& problems, const QJsonObject& libObj, const QString& filename) |
| 56 | { |
no test coverage detected