| 4195 | } |
| 4196 | |
| 4197 | void spliceLine( std::size_t _indent, std::string& _remainder, std::size_t _pos ) { |
| 4198 | lines.push_back( std::string( _indent, ' ' ) + _remainder.substr( 0, _pos ) ); |
| 4199 | _remainder = _remainder.substr( _pos ); |
| 4200 | } |
| 4201 | |
| 4202 | typedef std::vector<std::string>::const_iterator const_iterator; |
| 4203 |