| 115 | |
| 116 | template <typename T> |
| 117 | static std::shared_ptr<T> DefaultConstructor() { |
| 118 | return std::shared_ptr<T>(new T()); |
| 119 | } |
| 120 | |
| 121 | private: |
| 122 | using SharedObjectKey = std::pair<std::type_index, std::string>; |
nothing calls this directly
no outgoing calls
no test coverage detected