{-# LANGUAGE EmptyDataDecls, FlexibleContexts, FlexibleInstances,
  ForeignFunctionInterface, IncoherentInstances,
  MultiParamTypeClasses, OverlappingInstances, TemplateHaskell,
  TypeFamilies, TypeSynonymInstances #-}
module HROOT.Core.TSeqCollection.Implementation where
import Data.Monoid
import Data.Word
import Data.Int
import Foreign.C
import Foreign.Ptr
import Language.Haskell.TH
import Language.Haskell.TH.Syntax
import System.IO.Unsafe
import FFICXX.Runtime.Cast
import FFICXX.Runtime.CodeGen.Cxx
import FFICXX.Runtime.TH
import HROOT.Core.TSeqCollection.RawType
import HROOT.Core.TSeqCollection.FFI
import HROOT.Core.TSeqCollection.Interface
import HROOT.Core.TSeqCollection.Cast
import HROOT.Core.TSeqCollection.RawType
import HROOT.Core.TSeqCollection.Cast
import HROOT.Core.TSeqCollection.Interface
import HROOT.Core.TClass.RawType
import HROOT.Core.TClass.Cast
import HROOT.Core.TClass.Interface
import HROOT.Core.TCollection.RawType
import HROOT.Core.TCollection.Cast
import HROOT.Core.TCollection.Interface
import HROOT.Core.TObject.RawType
import HROOT.Core.TObject.Cast
import HROOT.Core.TObject.Interface
import STD.Deletable.RawType
import STD.Deletable.Cast
import STD.Deletable.Interface

instance () => ITSeqCollection (TSeqCollection) where

instance () => ITCollection (TSeqCollection) where

instance () => ITObject (TSeqCollection) where
        clear :: forall c0. Castable c0 CString => TSeqCollection -> c0 -> IO ()
clear = (Ptr RawTSeqCollection -> CString -> IO ())
-> TSeqCollection -> c0 -> IO ()
forall a ca x1 cx1 y cy.
(Castable a ca, Castable x1 cx1, Castable y cy) =>
(ca -> cx1 -> IO cy) -> a -> x1 -> IO y
xform1 Ptr RawTSeqCollection -> CString -> IO ()
c_tseqcollection_clear
        draw :: forall c0. Castable c0 CString => TSeqCollection -> c0 -> IO ()
draw = (Ptr RawTSeqCollection -> CString -> IO ())
-> TSeqCollection -> c0 -> IO ()
forall a ca x1 cx1 y cy.
(Castable a ca, Castable x1 cx1, Castable y cy) =>
(ca -> cx1 -> IO cy) -> a -> x1 -> IO y
xform1 Ptr RawTSeqCollection -> CString -> IO ()
c_tseqcollection_draw
        findObject :: forall c0.
Castable c0 CString =>
TSeqCollection -> c0 -> IO TObject
findObject = (Ptr RawTSeqCollection -> CString -> IO (Ptr RawTObject))
-> TSeqCollection -> c0 -> IO TObject
forall a ca x1 cx1 y cy.
(Castable a ca, Castable x1 cx1, Castable y cy) =>
(ca -> cx1 -> IO cy) -> a -> x1 -> IO y
xform1 Ptr RawTSeqCollection -> CString -> IO (Ptr RawTObject)
c_tseqcollection_findobject
        getName :: TSeqCollection -> IO CString
getName = (Ptr RawTSeqCollection -> IO CString)
-> TSeqCollection -> IO CString
forall a ca y cy.
(Castable a ca, Castable y cy) =>
(ca -> IO cy) -> a -> IO y
xform0 Ptr RawTSeqCollection -> IO CString
c_tseqcollection_getname
        isA :: TSeqCollection -> IO TClass
isA = (Ptr RawTSeqCollection -> IO (Ptr RawTClass))
-> TSeqCollection -> IO TClass
forall a ca y cy.
(Castable a ca, Castable y cy) =>
(ca -> IO cy) -> a -> IO y
xform0 Ptr RawTSeqCollection -> IO (Ptr RawTClass)
c_tseqcollection_isa
        paint :: forall c0. Castable c0 CString => TSeqCollection -> c0 -> IO ()
paint = (Ptr RawTSeqCollection -> CString -> IO ())
-> TSeqCollection -> c0 -> IO ()
forall a ca x1 cx1 y cy.
(Castable a ca, Castable x1 cx1, Castable y cy) =>
(ca -> cx1 -> IO cy) -> a -> x1 -> IO y
xform1 Ptr RawTSeqCollection -> CString -> IO ()
c_tseqcollection_paint
        printObj :: forall c0. Castable c0 CString => TSeqCollection -> c0 -> IO ()
printObj = (Ptr RawTSeqCollection -> CString -> IO ())
-> TSeqCollection -> c0 -> IO ()
forall a ca x1 cx1 y cy.
(Castable a ca, Castable x1 cx1, Castable y cy) =>
(ca -> cx1 -> IO cy) -> a -> x1 -> IO y
xform1 Ptr RawTSeqCollection -> CString -> IO ()
c_tseqcollection_printobj
        saveAs :: forall c1 c0.
(Castable c1 CString, Castable c0 CString) =>
TSeqCollection -> c0 -> c1 -> IO ()
saveAs = (Ptr RawTSeqCollection -> CString -> CString -> IO ())
-> TSeqCollection -> c0 -> c1 -> IO ()
forall a ca x1 cx1 x2 cx2 y cy.
(Castable a ca, Castable x1 cx1, Castable x2 cx2, Castable y cy) =>
(ca -> cx1 -> cx2 -> IO cy) -> a -> x1 -> x2 -> IO y
xform2 Ptr RawTSeqCollection -> CString -> CString -> IO ()
c_tseqcollection_saveas
        write :: forall c0.
Castable c0 CString =>
TSeqCollection -> c0 -> CInt -> CInt -> IO CInt
write = (Ptr RawTSeqCollection -> CString -> CInt -> CInt -> IO CInt)
-> TSeqCollection -> c0 -> CInt -> CInt -> IO CInt
forall a ca x1 cx1 x2 cx2 x3 cx3 y cy.
(Castable a ca, Castable x1 cx1, Castable x2 cx2, Castable x3 cx3,
 Castable y cy) =>
(ca -> cx1 -> cx2 -> cx3 -> IO cy) -> a -> x1 -> x2 -> x3 -> IO y
xform3 Ptr RawTSeqCollection -> CString -> CInt -> CInt -> IO CInt
c_tseqcollection_write
        write_ :: TSeqCollection -> IO CInt
write_ = (Ptr RawTSeqCollection -> IO CInt) -> TSeqCollection -> IO CInt
forall a ca y cy.
(Castable a ca, Castable y cy) =>
(ca -> IO cy) -> a -> IO y
xform0 Ptr RawTSeqCollection -> IO CInt
c_tseqcollection_write_

instance () => IDeletable (TSeqCollection) where
        delete :: TSeqCollection -> IO ()
delete = (Ptr RawTSeqCollection -> IO ()) -> TSeqCollection -> IO ()
forall a ca y cy.
(Castable a ca, Castable y cy) =>
(ca -> IO cy) -> a -> IO y
xform0 Ptr RawTSeqCollection -> IO ()
c_tseqcollection_delete