SmalltalkChunkFileSourceReader.st
author Jan Vrany <jan.vrany@fit.cvut.cz>
Thu, 18 Apr 2013 20:41:50 +0200
branchjv
changeset 18045 c0c600e0d3b3
parent 18011 deb0c3355881
parent 15051 0ec118c3189c
child 18068 3e841ddcb18a
permissions -rw-r--r--
Merged d5a532ec3746 and 40a747a170c5 (branch default - CVS HEAD)

"
 COPYRIGHT (c) 2009 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
"{ Package: 'stx:libbasic' }"

AbstractSourceFileReader subclass:#SmalltalkChunkFileSourceReader
	instanceVariableNames:''
	classVariableNames:''
	poolDictionaries:''
	category:'Kernel-Classes'
!

!SmalltalkChunkFileSourceReader class methodsFor:'documentation'!

copyright
"
 COPYRIGHT (c) 2009 by eXept Software AG
              All Rights Reserved

 This software is furnished under a license and may be used
 only in accordance with the terms of that license and with the
 inclusion of the above copyright notice.   This software may not
 be provided or otherwise made available to, or used by, any
 other person.  No title to or ownership of the software is
 hereby transferred.
"
!

documentation
"
    I know how to read smalltalk chunk file format
"
! !

!SmalltalkChunkFileSourceReader methodsFor:'fileIn'!

fileInStream: aStream
    ^ aStream fileIn

    "Modified: / 16-08-2009 / 10:00:48 / Jan Vrany <vranyj1@fel.cvut.cz>"
! !

!SmalltalkChunkFileSourceReader class methodsFor:'documentation'!

version
    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkChunkFileSourceReader.st,v 1.8 2013-04-03 16:17:34 cg Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkChunkFileSourceReader.st,v 1.8 2013-04-03 16:17:34 cg Exp $'
!

version_SVN
    ^'§Id: SmalltalkChunkFileSourceReader.st 10465 2009-08-16 17:14:23Z vranyj1 §'
! !