| 47 | } o1; |
| 48 | |
| 49 | struct c2 : public column_base |
| 50 | { |
| 51 | string heading() const { return string("Iteration<br>over<br>Elements"); } |
| 52 | string cell_value( const path & p ) const |
| 53 | { |
| 54 | string s; |
| 55 | for( path::iterator i(p.begin()); i != p.end(); ++i ) |
| 56 | { |
| 57 | if ( i != p.begin() ) s += ','; |
| 58 | s += (*i).string(); |
| 59 | } |
| 60 | return s; |
| 61 | } |
| 62 | } o2; |
| 63 | |
| 64 | struct c3 : public column_base |
| 65 | { |
nothing calls this directly
no outgoing calls
no test coverage detected