Load Json::Value into this object
| 371 | |
| 372 | // Load Json::Value into this object |
| 373 | void QtImageReader::SetJsonValue(const Json::Value root) { |
| 374 | |
| 375 | // Set parent data |
| 376 | ReaderBase::SetJsonValue(root); |
| 377 | |
| 378 | // Set data from Json (if key is found) |
| 379 | if (!root["path"].isNull()) |
| 380 | path = QString::fromStdString(root["path"].asString()); |
| 381 | } |
nothing calls this directly
no outgoing calls
no test coverage detected