| 5347 | } |
| 5348 | |
| 5349 | auto addIndentAndSuffix(std::string const &plain) const -> std::string { |
| 5350 | return std::string( indent(), ' ' ) + (m_suffix ? plain + "-" : plain); |
| 5351 | } |
| 5352 | |
| 5353 | public: |
| 5354 | explicit iterator( Column const& column ) : m_column( column ) { |