mirror of
https://github.com/gnustep/libs-base.git
synced 2025-05-30 08:21:25 +00:00
Rewrite NSProtocolChecker stuff ... seemed largely broken
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@19180 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
d8012f989f
commit
96c253eee4
4 changed files with 52 additions and 70 deletions
|
@ -36,18 +36,19 @@
|
|||
|
||||
// Creating a checker
|
||||
|
||||
+ (id) protocolCheckerWithTarget: (NSObject *)anObject
|
||||
protocol: (Protocol *)aProtocol;
|
||||
- (id) initWithTarget: (NSObject *)anObject protocol: (Protocol *)aProtocol;
|
||||
+ (id) protocolCheckerWithTarget: (NSObject*)anObject
|
||||
protocol: (Protocol*)aProtocol;
|
||||
|
||||
- (id) initWithTarget: (NSObject*)anObject
|
||||
protocol: (Protocol*)aProtocol;
|
||||
|
||||
// Reimplemented NSObject methods
|
||||
|
||||
- (void)forwardInvocation: (NSInvocation *)anInvocation;
|
||||
- (struct objc_method_description *) methodDescriptionForSelector: (SEL)aSelector;
|
||||
- (void) forwardInvocation: (NSInvocation*)anInvocation;
|
||||
|
||||
// Getting information
|
||||
- (Protocol *) protocol;
|
||||
- (NSObject *) target;
|
||||
- (Protocol*) protocol;
|
||||
- (NSObject*) target;
|
||||
|
||||
@end
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue