{-# LANGUAGE ForeignFunctionInterface, TypeFamilies, MultiParamTypeClasses, 
             FlexibleInstances, TypeSynonymInstances, 
             EmptyDataDecls, ExistentialQuantification, ScopedTypeVariables #-}

module HROOT.Core.TSeqCollection.RawType where


import Foreign.ForeignPtr
import FFICXX.Runtime.Cast  

data RawTSeqCollection
newtype TSeqCollection = TSeqCollection (ForeignPtr RawTSeqCollection) deriving (Eq, Ord, Show)
instance FPtr TSeqCollection where
   type Raw TSeqCollection = RawTSeqCollection
   get_fptr (TSeqCollection fptr) = fptr
   cast_fptr_to_obj = TSeqCollection