Query the current line breaking string.
| 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 | |
| 1768 | /** Switch over to "stream printing" which is the most dense formatting without |
| 1769 | linebreaks. Common when the XML is needed for network transmission. |