14#include "arccore/base/ExternalRef.h"
21namespace Arccore::Internal
25ExternalRef::DestroyFuncType m_destroy_functor =
nullptr;
37 if (m_destroy_functor && handle)
38 (*m_destroy_functor)(handle);
44extern "C" ARCCORE_BASE_EXPORT
void
45_SetExternalRefDestroyFunctor(ExternalRef::DestroyFuncType d)
48 m_destroy_functor = d;