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