Generate JSON string of this object
| 130 | |
| 131 | // Generate JSON string of this object |
| 132 | std::string WriterBase::Json() const { |
| 133 | |
| 134 | // Return formatted string |
| 135 | return JsonValue().toStyledString(); |
| 136 | } |
| 137 | |
| 138 | // Generate Json::Value for this object |
| 139 | Json::Value WriterBase::JsonValue() const { |
nothing calls this directly
no outgoing calls
no test coverage detected