Generate JSON string of this object
| 27 | |
| 28 | // Generate JSON string of this object |
| 29 | std::string Coordinate::Json() const { |
| 30 | |
| 31 | // Return formatted string |
| 32 | return JsonValue().toStyledString(); |
| 33 | } |
| 34 | |
| 35 | // Generate Json::Value for this object |
| 36 | Json::Value Coordinate::JsonValue() const { |
nothing calls this directly
no outgoing calls
no test coverage detected