| 46 | } o1; |
| 47 | |
| 48 | struct c2 : public column_base |
| 49 | { |
| 50 | string heading() const { return string("Iteration<br>over<br>Elements"); } |
| 51 | string cell_value(const path& p) const |
| 52 | { |
| 53 | string s; |
| 54 | for (path::iterator i(p.begin()); i != p.end(); ++i) |
| 55 | { |
| 56 | if (i != p.begin()) |
| 57 | 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