Set the line breaking string. By default set to newline (\n). Some operating systems prefer other characters, or can be set to the null/empty string for no indenation. */
| 1762 | set to the null/empty string for no indenation. |
| 1763 | */ |
| 1764 | void SetLineBreak( const char* _lineBreak ) { lineBreak = _lineBreak ? _lineBreak : ""; } |
| 1765 | /// Query the current line breaking string. |
| 1766 | const char* LineBreak() { return lineBreak.c_str(); } |
| 1767 |
nothing calls this directly
no outgoing calls
no test coverage detected