30 #ifndef ICL_CORE_SINGLETON_CREATION_POLICIES_H_INCLUDED 31 #define ICL_CORE_SINGLETON_CREATION_POLICIES_H_INCLUDED 79 return static_cast<T *
>(malloc(
sizeof(T)));
Creates and destroys objects using malloc() and free().
Creates and destroys objects using operator new and operator delete.
static void destroy(T *object)
static void destroy(T *object)
static void destroy(T *object)
Creates objects as static function variables.