| 13378 | ISingleton::~ISingleton() {} |
| 13379 | |
| 13380 | void addSingleton(ISingleton* singleton ) { |
| 13381 | getSingletons()->push_back( singleton ); |
| 13382 | } |
| 13383 | void cleanupSingletons() { |
| 13384 | auto& singletons = getSingletons(); |
| 13385 | for( auto singleton : *singletons ) |
no test coverage detected