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:
CaS 2004-04-25 07:06:41 +00:00
parent d8012f989f
commit 96c253eee4
4 changed files with 52 additions and 70 deletions

View file

@ -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