#include <list>
#include <vector>
#include <algorithm>
#include <stdexcept>
Go to the source code of this file.
|
void | Protium::Singleton::AtExitFn () |
| Gets added to the std::atexit queue every time a singleton get created. Called once for every singleton at end of execution. Deletes singletons in order. More...
|
|
template<typename Host , typename Destroyer > |
void | Protium::Singleton::SetPriority (Host *pDynObject, unsigned int priority, Destroyer d) |
| Helper function for putting an object into the deletion queue. More...
|
|
template<typename Host > |
void | Protium::Singleton::SetPriority (Host *pDynObject, unsigned int priority, typename Deleter< Host >::Type d=Deleter< Host >::Delete) |
| Helper function for setting singleton deletion priority. More...
|
|