| 142 | |
| 143 | std::string Json() const override { return JsonValue().toStyledString(); } |
| 144 | Json::Value JsonValue() const override { |
| 145 | Json::Value root = ReaderBase::JsonValue(); |
| 146 | root["type"] = "TimelineSolidColorReader"; |
| 147 | root["path"] = ""; |
| 148 | return root; |
| 149 | } |
| 150 | void SetJson(const std::string value) override { (void) value; } |
| 151 | void SetJsonValue(const Json::Value root) override { ReaderBase::SetJsonValue(root); } |
| 152 | }; |