Generate JSON string of this object
| 61 | |
| 62 | // Generate JSON string of this object |
| 63 | std::string Point::Json() const { |
| 64 | |
| 65 | // Return formatted string |
| 66 | return JsonValue().toStyledString(); |
| 67 | } |
| 68 | |
| 69 | // Generate Json::Value for this object |
| 70 | Json::Value Point::JsonValue() const { |
nothing calls this directly
no outgoing calls
no test coverage detected