Generate Json::Value for this object
| 154 | |
| 155 | // Generate Json::Value for this object |
| 156 | Json::Value DummyReader::JsonValue() const { |
| 157 | |
| 158 | // Create root json object |
| 159 | Json::Value root = ReaderBase::JsonValue(); // get parent properties |
| 160 | root["type"] = "DummyReader"; |
| 161 | |
| 162 | // return JsonValue |
| 163 | return root; |
| 164 | } |
| 165 | |
| 166 | // Load JSON string into this object |
| 167 | void DummyReader::SetJson(const std::string value) { |
nothing calls this directly
no outgoing calls
no test coverage detected