| 76 | std::string pass_cref(atyp const& obj) { return "pass_cref:" + obj.mtxt; } |
| 77 | std::string pass_mref(atyp& obj) { return "pass_mref:" + obj.mtxt; } |
| 78 | std::string pass_cptr(atyp const* obj) { return "pass_cptr:" + obj->mtxt; } |
| 79 | std::string pass_mptr(atyp* obj) { return "pass_mptr:" + obj->mtxt; } |
| 80 | |
| 81 | std::shared_ptr<atyp> rtrn_shmp() { return std::make_shared<atyp>("rtrn_shmp"); } |
nothing calls this directly
no outgoing calls
no test coverage detected