MCPcopy Create free account
hub / github.com/boostorg/filesystem / c2

Class c2

doc/path_table.cpp:49–62  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected