| 10893 | ISingleton::~ISingleton() {} |
| 10894 | |
| 10895 | void addSingleton(ISingleton* singleton ) { |
| 10896 | getSingletons()->push_back( singleton ); |
| 10897 | } |
| 10898 | void cleanupSingletons() { |
| 10899 | auto& singletons = getSingletons(); |
| 10900 | for( auto singleton : *singletons ) |
no test coverage detected