| 4036 | |
| 4037 | struct TextAttributes { |
| 4038 | TextAttributes() |
| 4039 | : initialIndent( std::string::npos ), |
| 4040 | indent( 0 ), |
| 4041 | width( consoleWidth-1 ), |
| 4042 | tabChar( '\t' ) |
| 4043 | {} |
| 4044 | |
| 4045 | TextAttributes& setInitialIndent( std::size_t _value ) { initialIndent = _value; return *this; } |
| 4046 | TextAttributes& setIndent( std::size_t _value ) { indent = _value; return *this; } |
nothing calls this directly
no outgoing calls
no test coverage detected