MCWriter.st
author Claus Gittinger <cg@exept.de>
Wed, 29 Aug 2018 15:20:19 +0200
changeset 1081 9f4a608ef9f3
parent 710 10d134daf6fd
child 1095 87f223484bc3
permissions -rw-r--r--
class order

"{ Package: 'stx:goodies/monticello' }"

Object subclass:#MCWriter
	instanceVariableNames:'stream'
	classVariableNames:''
	poolDictionaries:''
	category:'SCM-Monticello-Storing'
!


!MCWriter class methodsFor:'accessing'!

extension
	^ self readerClass extension
!

readerClass
	^ self subclassResponsibility 
! !

!MCWriter class methodsFor:'writing'!

on: aStream
	^ self new stream: aStream
! !

!MCWriter methodsFor:'as yet unclassified'!

stream
	^ stream
!

stream: aStream
	stream := aStream
! !

!MCWriter class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCWriter.st,v 1.5 2012-09-11 21:31:32 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCWriter.st,v 1.5 2012-09-11 21:31:32 cg Exp $'
!

version_SVN
    ^ '§Id: MCWriter.st 5 2010-08-29 07:30:29Z vranyj1 §'
! !