(Streaming -closeStream): New method; we must separate the idea of

"closing" a stream and "deallocating" a stream because of delays in
deallocation due to -autorelease.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@807 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-01-24 15:36:50 +00:00
parent 255eb32425
commit e02c73f988
2 changed files with 8 additions and 0 deletions

View file

@ -47,6 +47,10 @@
- (BOOL) isAtEof;
- (void) flushStream;
/* We must separate the idea of "closing" a stream and "deallocating" a
stream because of delays in deallocation due to -autorelease. */
- (void) closeStream;
- (BOOL) isWritable;
@end

View file

@ -47,6 +47,10 @@
- (BOOL) isAtEof;
- (void) flushStream;
/* We must separate the idea of "closing" a stream and "deallocating" a
stream because of delays in deallocation due to -autorelease. */
- (void) closeStream;
- (BOOL) isWritable;
@end