| 156 | } |
| 157 | |
| 158 | bool ProtoJsonFormat::PrintToStyledString(const Message& message, std::string* output) { |
| 159 | Json::Value root; |
| 160 | WriteToValue(message, &root); |
| 161 | output->assign(root.toStyledString()); |
| 162 | return true; |
| 163 | } |
| 164 | |
| 165 | bool ProtoJsonFormat::PrintToFastString(const Message& message, std::string* output) { |
| 166 | Json::Value root; |