\brief Set the indent level of this class to \c indent.
| 50 | |
| 51 | /// \brief Set the indent level of this class to \c indent. |
| 52 | void SetIndent(const unsigned indent, const SkipIndenting skipIndenting = SkipIndenting::No) |
| 53 | { |
| 54 | mDefaultIndent = indent; |
| 55 | |
| 56 | if(SkipIndenting::No == skipIndenting) { |
| 57 | Indent(mDefaultIndent); |
| 58 | } |
| 59 | } |
| 60 | |
| 61 | /// \brief Set the indent level of this class to that of \c rhs. |
| 62 | void SetIndent(const OutputFormatHelper& rhs, const SkipIndenting skipIndenting = SkipIndenting::No) |
no outgoing calls
no test coverage detected