git/GitIndexerStreamHandle.st
author vranyj1@bd9d3459-6c23-4dd9-91de-98eeebb81177
Mon, 17 Sep 2012 20:28:12 +0000
changeset 5 57c20a77e549
child 27 a36a11925d3f
permissions -rw-r--r--
- Refactored to use handles

"{ Package: 'stx:libscm/git' }"

ExternalAddress subclass:#GitIndexerStreamHandle
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Git-Internal-Handles'
!


!GitIndexerStreamHandle class methodsFor:'accessing'!

libraryName

    OperatingSystem isUNIXlike ifTrue:[^'libgit2.so'].

    OperatingSystem isMSWINDOWSlike ifTrue:[^'git2.dll'].

    self error:'Library name for host OS is not known'
!

structSize
    "Returns size of undelaying structure in bytes"

    ^0
! !

!GitIndexerStreamHandle class methodsFor:'documentation'!

version_SVN
    ^ '$Id::                                                                                                                        $'
! !