Contains creation policies for icl_core::Singleton. More...
#include <stdlib.h>
Go to the source code of this file.
Classes | |
class | icl_core::SCPCreateStatic< T > |
Creates objects as static function variables. More... | |
class | icl_core::SCPCreateUsingMalloc< T > |
Creates and destroys objects using malloc() and free(). More... | |
class | icl_core::SCPCreateUsingNew< T > |
Creates and destroys objects using operator new and operator delete. More... | |
Namespaces | |
namespace | icl_core |
Contains creation policies for icl_core::Singleton.
icl_core::SCPCreateUsingNew uses operator new and operator delete. icl_core::SCPCreateStatic keeps the instance as a static function variable. icl_core::SCPCreateUsingMalloc uses malloc() and free().
Definition in file SingletonCreationPolicies.h.