| 10 | Box::Box(const Kind kind) : kind(kind) {} |
| 11 | |
| 12 | SeqBox::SeqBox() : Box(Kind::SEQ) {} |
| 13 | |
| 14 | SimpleBox::SimpleBox(const std::string &content) : Box(Kind::SIMPLE), content(content) {} |
| 15 |
nothing calls this directly
no outgoing calls
no test coverage detected