Generate Json::Value for this object
| 121 | |
| 122 | // Generate Json::Value for this object |
| 123 | Json::Value ImageReader::JsonValue() const { |
| 124 | |
| 125 | // get parent properties |
| 126 | Json::Value root = ReaderBase::JsonValue(); |
| 127 | |
| 128 | root["type"] = "ImageReader"; |
| 129 | root["path"] = path; |
| 130 | return root; |
| 131 | } |
| 132 | |
| 133 | // Load JSON string into this object |
| 134 | void ImageReader::SetJson(const std::string value) { |
nothing calls this directly
no outgoing calls
no test coverage detected