Generate JSON string of this object
| 77 | |
| 78 | // Generate JSON string of this object |
| 79 | std::string Color::Json() const { |
| 80 | |
| 81 | // Return formatted string |
| 82 | return JsonValue().toStyledString(); |
| 83 | } |
| 84 | |
| 85 | // Generate Json::Value for this object |
| 86 | Json::Value Color::JsonValue() const { |
nothing calls this directly
no outgoing calls
no test coverage detected