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

Class c2

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

Source from the content-addressed store, hash-verified

46} o1;
47
48struct 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
64struct c3 : public column_base
65{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected