| 193 | |
| 194 | std::string Json() const override { return JsonValue().toStyledString(); } |
| 195 | Json::Value JsonValue() const override { |
| 196 | Json::Value root = ReaderBase::JsonValue(); |
| 197 | root["type"] = "TimelineConstantAudioReader"; |
| 198 | root["path"] = ""; |
| 199 | return root; |
| 200 | } |
| 201 | void SetJson(const std::string value) override { (void) value; } |
| 202 | void SetJsonValue(const Json::Value root) override { ReaderBase::SetJsonValue(root); } |
| 203 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected