{-# LANGUAGE ForeignFunctionInterface, TypeFamilies, MultiParamTypeClasses, FlexibleInstances, TypeSynonymInstances, EmptyDataDecls, ExistentialQuantification, ScopedTypeVariables #-} module HROOT.Hist.TGraphErrors.RawType where import Foreign.ForeignPtr import FFICXX.Runtime.Cast data RawTGraphErrors newtype TGraphErrors = TGraphErrors (ForeignPtr RawTGraphErrors) deriving (Eq, Ord, Show) instance FPtr TGraphErrors where type Raw TGraphErrors = RawTGraphErrors get_fptr (TGraphErrors fptr) = fptr cast_fptr_to_obj = TGraphErrors