Declare new methods.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@777 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Andrew McCallum 1996-01-23 23:07:24 +00:00
parent c7e63977de
commit 35671473e6
2 changed files with 14 additions and 8 deletions

View file

@ -1,5 +1,5 @@
/* Interface for GNU Objective C stdio stream
Copyright (C) 1994, 1995 Free Software Foundation, Inc.
Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: July 1994
@ -38,12 +38,15 @@
+ standardOut;
+ standardError;
+ streamWithFilename: (id <String>)name fmode: (const char *)m;
/* xxx Add the others too. */
- initWithFilePointer: (FILE*)afp fmode: (const char *)m;
- initWithFilename: (const char *)name fmode: (const char *)m;
- initWithFilename: (id <String>)name fmode: (const char *)m;
- initWithFileDescriptor: (int)fd fmode: (const char *)m;
- initWithPipeTo: (const char *)systemCommand;
- initWithPipeFrom: (const char *)systemCommand;
- initWithPipeTo: (id <String>)systemCommand;
- initWithPipeFrom: (id <String>)systemCommand;
@end

View file

@ -1,5 +1,5 @@
/* Interface for GNU Objective C stdio stream
Copyright (C) 1994, 1995 Free Software Foundation, Inc.
Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc.
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
Date: July 1994
@ -38,12 +38,15 @@
+ standardOut;
+ standardError;
+ streamWithFilename: (id <String>)name fmode: (const char *)m;
/* xxx Add the others too. */
- initWithFilePointer: (FILE*)afp fmode: (const char *)m;
- initWithFilename: (const char *)name fmode: (const char *)m;
- initWithFilename: (id <String>)name fmode: (const char *)m;
- initWithFileDescriptor: (int)fd fmode: (const char *)m;
- initWithPipeTo: (const char *)systemCommand;
- initWithPipeFrom: (const char *)systemCommand;
- initWithPipeTo: (id <String>)systemCommand;
- initWithPipeFrom: (id <String>)systemCommand;
@end