| 5030 | unsigned int precision_; |
| 5031 | }; |
| 5032 | BuiltStyledStreamWriter::BuiltStyledStreamWriter( |
| 5033 | JSONCPP_STRING const& indentation, |
| 5034 | CommentStyle::Enum cs, |
| 5035 | JSONCPP_STRING const& colonSymbol, |
| 5036 | JSONCPP_STRING const& nullSymbol, |
| 5037 | JSONCPP_STRING const& endingLineFeedSymbol, |
| 5038 | bool useSpecialFloats, |
| 5039 | unsigned int precision) |
| 5040 | : rightMargin_(74) |
| 5041 | , indentation_(indentation) |
| 5042 | , cs_(cs) |
| 5043 | , colonSymbol_(colonSymbol) |
| 5044 | , nullSymbol_(nullSymbol) |
| 5045 | , endingLineFeedSymbol_(endingLineFeedSymbol) |
| 5046 | , addChildValues_(false) |
| 5047 | , indented_(false) |
| 5048 | , useSpecialFloats_(useSpecialFloats) |
| 5049 | , precision_(precision) |
| 5050 | { |
| 5051 | } |
| 5052 | int BuiltStyledStreamWriter::write(Value const& root, JSONCPP_OSTREAM* sout) |
| 5053 | { |
| 5054 | sout_ = sout; |
nothing calls this directly
no outgoing calls
no test coverage detected