| 5085 | PrecisionType precisionType_; |
| 5086 | }; |
| 5087 | BuiltStyledStreamWriter::BuiltStyledStreamWriter( |
| 5088 | JSONCPP_STRING const& indentation, |
| 5089 | CommentStyle::Enum cs, |
| 5090 | JSONCPP_STRING const& colonSymbol, |
| 5091 | JSONCPP_STRING const& nullSymbol, |
| 5092 | JSONCPP_STRING const& endingLineFeedSymbol, |
| 5093 | bool useSpecialFloats, |
| 5094 | unsigned int precision, |
| 5095 | PrecisionType precisionType) |
| 5096 | : rightMargin_(74), indentation_(indentation), cs_(cs), |
| 5097 | colonSymbol_(colonSymbol), nullSymbol_(nullSymbol), |
| 5098 | endingLineFeedSymbol_(endingLineFeedSymbol), addChildValues_(false), |
| 5099 | indented_(false), useSpecialFloats_(useSpecialFloats), |
| 5100 | precision_(precision), precisionType_(precisionType) {} |
| 5101 | int BuiltStyledStreamWriter::write(Value const& root, JSONCPP_OSTREAM* sout) { |
| 5102 | sout_ = sout; |
| 5103 | addChildValues_ = false; |
nothing calls this directly
no outgoing calls
no test coverage detected