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