{-# LANGUAGE ForeignFunctionInterface, TypeFamilies, MultiParamTypeClasses, FlexibleInstances, TypeSynonymInstances, EmptyDataDecls, ExistentialQuantification, ScopedTypeVariables #-} module HROOT.Core.TAttFill.RawType where import Foreign.Ptr import FFICXX.Runtime.Cast data RawTAttFill newtype TAttFill = TAttFill (Ptr RawTAttFill) deriving (Eq, Ord, Show) instance FPtr TAttFill where type Raw TAttFill = RawTAttFill get_fptr (TAttFill ptr) = ptr cast_fptr_to_obj = TAttFill