| 11885 | class Singleton : SingletonImplT, public ISingleton { |
| 11886 | |
| 11887 | static auto getInternal() -> Singleton* { |
| 11888 | static Singleton* s_instance = nullptr; |
| 11889 | if( !s_instance ) { |
| 11890 | s_instance = new Singleton; |
| 11891 | addSingleton( s_instance ); |
| 11892 | } |
| 11893 | return s_instance; |
| 11894 | } |
| 11895 | |
| 11896 | public: |
| 11897 | static auto get() -> InterfaceT const& { |
nothing calls this directly
no test coverage detected