home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OpenStep (Enterprise)
/
OpenStepENTCD.toast
/
OEDEV
/
DEV.Z
/
NSProtocolChecker.h
< prev
next >
Wrap
Text File
|
1996-09-11
|
553b
|
27 lines
/* NSProtocolChecker.h
Message filtering
Copyright 1995-1996, NeXT Software, Inc. All rights reserved.
*/
#if !defined(STRICT_OPENSTEP)
#import <Foundation/NSProxy.h>
#import <Foundation/NSObject.h>
@interface NSProtocolChecker : NSProxy
- (Protocol *)protocol;
- (NSObject *)target;
@end
@interface NSProtocolChecker (NSProtocolCheckerCreation)
+ (id)protocolCheckerWithTarget:(NSObject *)anObject protocol:(Protocol *)aProtocol;
- (id)initWithTarget:(NSObject *)anObject protocol:(Protocol *)aProtocol;
@end
#endif /* !STRICT_OPENSTEP */