git/GitReflogHandle.st
changeset 5 57c20a77e549
child 27 a36a11925d3f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/git/GitReflogHandle.st	Mon Sep 17 20:28:12 2012 +0000
@@ -0,0 +1,32 @@
+"{ Package: 'stx:libscm/git' }"
+
+ExternalAddress subclass:#GitReflogHandle
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'Git-Internal-Handles'
+!
+
+
+!GitReflogHandle 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
+! !
+
+!GitReflogHandle class methodsFor:'documentation'!
+
+version_SVN
+    ^ '$Id::                                                                                                                        $'
+! !