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