SmalltalkChunkFileSourceReader.st
author Claus Gittinger <cg@exept.de>
Fri, 06 Nov 2009 00:19:10 +0100
changeset 12507 41ac4792b598
parent 12179 2ce0159b3bb4
child 14408 c3830b8e8abe
permissions -rw-r--r--
added: #flushSubclassInfoFor:

"
 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.
"
! !

!SmalltalkChunkFileSourceReader methodsFor:'fileIn'!

fileInStream: aStream
        "raise an error: must be redefined in concrete subclass(es)"

    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.5 2009-10-08 11:56:01 fm Exp $'
!

version_CVS
    ^ '$Header: /cvs/stx/stx/libbasic/SmalltalkChunkFileSourceReader.st,v 1.5 2009-10-08 11:56:01 fm Exp $'
!

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