| 12955 | ISingleton::~ISingleton() {} |
| 12956 | |
| 12957 | void addSingleton(ISingleton* singleton ) { |
| 12958 | getSingletons()->push_back( singleton ); |
| 12959 | } |
| 12960 | void cleanupSingletons() { |
| 12961 | auto& singletons = getSingletons(); |
| 12962 | for( auto singleton : *singletons ) |
no test coverage detected