| 36 | */ |
| 37 | template <typename C, typename... T> |
| 38 | [[nodiscard]] static Module::UPtr Create(T &&...args) |
| 39 | { |
| 40 | return std::make_unique<C>(C(std::forward<T>(args)...)); |
| 41 | } |
| 42 | |
| 43 | virtual ~Module() = default; |
| 44 |
nothing calls this directly
no outgoing calls
no test coverage detected