| 11161 | ISingleton::~ISingleton() {} |
| 11162 | |
| 11163 | void addSingleton(ISingleton* singleton ) { |
| 11164 | getSingletons()->push_back( singleton ); |
| 11165 | } |
| 11166 | void cleanupSingletons() { |
| 11167 | auto& singletons = getSingletons(); |
| 11168 | for( auto singleton : *singletons ) |
no test coverage detected