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