mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
Declare new method.
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@1123 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
1d71f2259c
commit
f9e74bde31
6 changed files with 18 additions and 2 deletions
|
@ -26,6 +26,7 @@
|
|||
|
||||
#include <objects/stdobjects.h>
|
||||
#include <objects/Coder.h>
|
||||
#include <objects/Port.h>
|
||||
|
||||
/* ConnectedCoder identifiers */
|
||||
enum {
|
||||
|
@ -65,6 +66,8 @@ enum {
|
|||
int identifier;
|
||||
}
|
||||
|
||||
+ newDecodingWithPacket: (Packet*)packet
|
||||
connection: (Connection*)c;
|
||||
+ newDecodingWithConnection: (Connection*)c
|
||||
timeout: (int) timeout;
|
||||
- (void) dismiss;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Interface for GNU Objective C memory 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
|
||||
|
@ -53,6 +53,9 @@
|
|||
int position;
|
||||
}
|
||||
|
||||
- initWithCapacity: (unsigned)capacity
|
||||
prefix: (unsigned)prefix;
|
||||
|
||||
- initWithSize: (unsigned)s; /* For backwards compatibility, depricated */
|
||||
|
||||
- (unsigned) streamBufferPrefix;
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
|
||||
- (void) run;
|
||||
- (void) runUntilDate: limit_date;
|
||||
- (BOOL) runOnceBeforeDate: date
|
||||
forMode: (id <String>)mode;
|
||||
- (BOOL) runMode: (id <String>)mode
|
||||
beforeDate: limit_date;
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
|
||||
#include <objects/stdobjects.h>
|
||||
#include <objects/Coder.h>
|
||||
#include <objects/Port.h>
|
||||
|
||||
/* ConnectedCoder identifiers */
|
||||
enum {
|
||||
|
@ -65,6 +66,8 @@ enum {
|
|||
int identifier;
|
||||
}
|
||||
|
||||
+ newDecodingWithPacket: (Packet*)packet
|
||||
connection: (Connection*)c;
|
||||
+ newDecodingWithConnection: (Connection*)c
|
||||
timeout: (int) timeout;
|
||||
- (void) dismiss;
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/* Interface for GNU Objective C memory 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
|
||||
|
@ -53,6 +53,9 @@
|
|||
int position;
|
||||
}
|
||||
|
||||
- initWithCapacity: (unsigned)capacity
|
||||
prefix: (unsigned)prefix;
|
||||
|
||||
- initWithSize: (unsigned)s; /* For backwards compatibility, depricated */
|
||||
|
||||
- (unsigned) streamBufferPrefix;
|
||||
|
|
|
@ -32,6 +32,8 @@
|
|||
|
||||
- (void) run;
|
||||
- (void) runUntilDate: limit_date;
|
||||
- (BOOL) runOnceBeforeDate: date
|
||||
forMode: (id <String>)mode;
|
||||
- (BOOL) runMode: (id <String>)mode
|
||||
beforeDate: limit_date;
|
||||
|
||||
|
|
Loading…
Reference in a new issue