| 252 | struct SftVirtBase : std::enable_shared_from_this<SftVirtBase> { |
| 253 | SftVirtBase() = default; |
| 254 | virtual ~SftVirtBase() = default; |
| 255 | static std::shared_ptr<SftVirtBase> create() { return std::make_shared<SftVirtBase>(); } |
| 256 | virtual std::string name() { return "SftVirtBase"; } |
| 257 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected