| 9864 | class Singleton : SingletonImplT, public ISingleton { |
| 9865 | |
| 9866 | static auto getInternal() -> Singleton* { |
| 9867 | static Singleton* s_instance = nullptr; |
| 9868 | if( !s_instance ) { |
| 9869 | s_instance = new Singleton; |
| 9870 | addSingleton( s_instance ); |
| 9871 | } |
| 9872 | return s_instance; |
| 9873 | } |
| 9874 | |
| 9875 | public: |
| 9876 | static auto get() -> InterfaceT const& { |
nothing calls this directly
no test coverage detected