MCSnapshotReader.st
author Claus Gittinger <cg@exept.de>
Sat, 20 Aug 2011 13:43:13 +0200
changeset 207 83708c5fac2a
parent 35 2d464b2efb1d
child 313 532c3d563b77
permissions -rw-r--r--
added: #version_CVS

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

MCReader subclass:#MCSnapshotReader
	instanceVariableNames:'definitions'
	classVariableNames:''
	poolDictionaries:''
	category:'Monticello-Storing'
!


!MCSnapshotReader class methodsFor:'as yet unclassified'!

snapshotFromStream: aStream
	^ (self on: aStream) snapshot
! !

!MCSnapshotReader methodsFor:'as yet unclassified'!

definitions
	definitions ifNil: [self loadDefinitions].
	^ definitions
!

snapshot
	^ MCSnapshot fromDefinitions: self definitions
! !

!MCSnapshotReader class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCSnapshotReader.st,v 1.2 2011-08-20 11:43:13 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/goodies/monticello/MCSnapshotReader.st,v 1.2 2011-08-20 11:43:13 cg Exp $'
!

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