mirror of
https://github.com/gnustep/libs-base.git
synced 2025-04-22 16:33:29 +00:00
([MethodInvocation -initWithSelector:arguments:]): New method, not
implemented. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@703 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
7bfe1d3a65
commit
2d3244082f
1 changed files with 9 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
/* Implementation for Objective-C Invocation object
|
||||
Copyright (C) 1993,1994, 1995 Free Software Foundation, Inc.
|
||||
Copyright (C) 1993,1994, 1995, 1996 Free Software Foundation, Inc.
|
||||
|
||||
Written by: R. Andrew McCallum <mccallum@gnu.ai.mit.edu>
|
||||
Date: May 1993
|
||||
|
@ -239,6 +239,14 @@ my_method_get_next_argument (arglist_t argframe,
|
|||
return self;
|
||||
}
|
||||
|
||||
- initWithSelector: (SEL)s arguments: receiver, ...
|
||||
{
|
||||
[self initWithSelector:s];
|
||||
[self notImplemented:_cmd];
|
||||
return self;
|
||||
}
|
||||
|
||||
|
||||
- (void) invoke
|
||||
{
|
||||
void *ret;
|
||||
|
|
Loading…
Reference in a new issue