initial checkin
authorfm
Wed, 23 Sep 2009 18:47:24 +0200
changeset 48 4d8211921482
parent 47 ecc4980a906b
child 49 033a7e409639
initial checkin
SVN__RevisionHead.st
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/SVN__RevisionHead.st	Wed Sep 23 18:47:24 2009 +0200
@@ -0,0 +1,32 @@
+"{ Package: 'cvut:stx/goodies/libsvn' }"
+
+"{ NameSpace: SVN }"
+
+Revision subclass:#RevisionHead
+	instanceVariableNames:''
+	classVariableNames:''
+	poolDictionaries:''
+	category:'SVN-Core'
+!
+
+!RevisionHead class methodsFor:'documentation'!
+
+version_SVN
+    ^'$Id$'
+! !
+
+!RevisionHead methodsFor:'printing & storing'!
+
+printOn:aStream
+    "append a printed representation if the receiver to the argument, aStream"
+
+    aStream nextPutAll:'HEAD'
+
+    "Created: / 15-03-2008 / 23:23:23 / janfrog"
+! !
+
+!RevisionHead class methodsFor:'documentation'!
+
+version
+    ^ '$Header$'
+! !