Set the indent characters for printing. By default 4 spaces but tab (\t) is also useful, or null/empty string for no indentation. */
| 1755 | but tab (\t) is also useful, or null/empty string for no indentation. |
| 1756 | */ |
| 1757 | void SetIndent( const char* _indent ) { indent = _indent ? _indent : "" ; } |
| 1758 | /// Query the indention string. |
| 1759 | const char* Indent() { return indent.c_str(); } |
| 1760 | /** Set the line breaking string. By default set to newline (\n). |
nothing calls this directly
no outgoing calls
no test coverage detected