MCWriter.st
author Claus Gittinger <cg@exept.de>
Mon, 26 Oct 2009 16:25:02 +0100
changeset 138 ebac03eed350
parent 38 921aafa6712e
child 257 5fc9bdda96d7
permissions -rw-r--r--
more porting (but still unfinished)

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

Object subclass:#MCWriter
	instanceVariableNames:'stream'
	classVariableNames:''
	poolDictionaries:''
	category:'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.
        zip notNil ifTrue:[ zip writingTo:aStream ].
! !

!MCWriter class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCWriter.st,v 1.2 2009-10-26 15:25:02 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCWriter.st,v 1.2 2009-10-26 15:25:02 cg Exp $'
! !