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