| 35 | return i; |
| 36 | } |
| 37 | std::string string_buffer::str() const { |
| 38 | std::stringstream ss; |
| 39 | for (std::vector< boost::shared_ptr<item> >::const_iterator it = items.begin(); it != items.end(); ++it) { |
| 40 | ss << (**it).str(); |
| 41 | } |
| 42 | return ss.str(); |
| 43 | } |
no test coverage detected