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