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