| 4207 | std::size_t size() const { return lines.size(); } |
| 4208 | std::string const& operator[]( std::size_t _index ) const { return lines[_index]; } |
| 4209 | std::string toString() const { |
| 4210 | std::ostringstream oss; |
| 4211 | oss << *this; |
| 4212 | return oss.str(); |
| 4213 | } |
| 4214 | |
| 4215 | inline friend std::ostream& operator << ( std::ostream& _stream, Text const& _text ) { |
| 4216 | for( Text::const_iterator it = _text.begin(), itEnd = _text.end(); |
no test coverage detected