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