| 3197 | |
| 3198 | struct TextAttributes { |
| 3199 | TextAttributes() |
| 3200 | : initialIndent( std::string::npos ), |
| 3201 | indent( 0 ), |
| 3202 | width( consoleWidth-1 ), |
| 3203 | tabChar( '\t' ) |
| 3204 | {} |
| 3205 | |
| 3206 | TextAttributes& setInitialIndent( std::size_t _value ) { initialIndent = _value; return *this; } |
| 3207 | TextAttributes& setIndent( std::size_t _value ) { indent = _value; return *this; } |
nothing calls this directly
no outgoing calls
no test coverage detected