| 5405 | explicit Column( std::string const& text ) { m_strings.push_back( text ); } |
| 5406 | |
| 5407 | auto width( size_t newWidth ) -> Column& { |
| 5408 | assert( newWidth > 0 ); |
| 5409 | m_width = newWidth; |
| 5410 | return *this; |
| 5411 | } |
| 5412 | auto indent( size_t newIndent ) -> Column& { |
| 5413 | m_indent = newIndent; |
| 5414 | return *this; |
no outgoing calls
no test coverage detected