{-# LANGUAGE FlexibleInstances, FlexibleContexts, TypeFamilies, MultiParamTypeClasses, OverlappingInstances, IncoherentInstances #-} module HROOT.Core.TCollection.Cast where import Foreign.Ptr import Foreign.ForeignPtr (castForeignPtr, newForeignPtr_) import Foreign.ForeignPtr.Unsafe import FFICXX.Runtime.Cast import System.IO.Unsafe import HROOT.Core.TCollection.RawType import HROOT.Core.TCollection.Interface instance (ITCollection a, FPtr a) => Castable a (Ptr RawTCollection) where cast = unsafeForeignPtrToPtr . castForeignPtr . get_fptr uncast = cast_fptr_to_obj . castForeignPtr . unsafePerformIO . newForeignPtr_ instance Castable TCollection (Ptr RawTCollection) where cast = unsafeForeignPtrToPtr . castForeignPtr . get_fptr uncast = cast_fptr_to_obj . castForeignPtr . unsafePerformIO . newForeignPtr_