git/GitDiffListHandle.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Wed, 05 Feb 2014 13:28:46 +0000
branchcvs_MAIN
changeset 481 0cfef855baa2
parent 31 d96d7eff6efc
permissions -rw-r--r--
Initial import from upstream repository repo: https://janvrany@bitbucket.org/janvrany/stx-libscm rev: 1ce5bbf

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

ExternalAddress subclass:#GitDiffListHandle
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Git-Core-Internal-Handles'
!


!GitDiffListHandle 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
! !

!GitDiffListHandle class methodsFor:'documentation'!

version_GIT
    "Never, ever change this method. Ask JV or CG why"
    ^thisContext method mclass theNonMetaclass instVarNamed: #revision
!

version_SVN
    ^ '$Id$'
! !