| 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 | }; |
| 258 | struct SftVirtDerived : SftVirtBase { |
no outgoing calls
no test coverage detected