{-# LANGUAGE FlexibleInstances, FlexibleContexts, TypeFamilies, MultiParamTypeClasses, OverlappingInstances, IncoherentInstances #-} module HROOT.Class.TWbox.Cast where import Foreign.Ptr import Foreign.ForeignPtr import HROOT.TypeCast import System.IO.Unsafe import HROOT.Class.TWbox.RawType import HROOT.Class.TWbox.Interface instance (ITWbox a, FPtr a) => Castable a (Ptr RawTWbox) where cast = unsafeForeignPtrToPtr . castForeignPtr . get_fptr uncast = cast_fptr_to_obj . castForeignPtr . unsafePerformIO . newForeignPtr_ instance Castable TWbox (Ptr RawTWbox) where cast = unsafeForeignPtrToPtr . castForeignPtr . get_fptr uncast = cast_fptr_to_obj . castForeignPtr . unsafePerformIO . newForeignPtr_