MCPcopy Create free account
hub / github.com/boost-ext/te / Square

Class Square

example/nonowning.cpp:23–29  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

21};
22
23struct Square {
24 int value;
25 void draw(std::ostream &out) {
26 out << "Square";
27 value += 1;
28 }
29};
30
31struct Circle {
32 void draw(std::ostream &out) { out << "Circle"; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected