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