home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.2 (Developer) / NS_dev_3.2.iso / NextDeveloper / Headers / machkit / NXProtocolChecker.h < prev    next >
Text File  |  1992-01-17  |  466b  |  24 lines

  1. /*
  2.  * Copyright 1991 NeXT Computer, Inc.
  3.  */
  4.  
  5. #import <objc/Protocol.h>
  6. #import <objc/Object.h>
  7. #import <machkit/exceptions.h>
  8.  
  9. @interface NXProtocolChecker : Object {
  10.     id    target;
  11.     Protocol *protocol;
  12. }
  13.  
  14. - initWithObject:anObject forProtocol:(Protocol *)proto;
  15.  
  16. // reimplemented Object methods...
  17. - forward:(SEL)sel :(void *)args;
  18. - (struct objc_method_description *) descriptionForMethod:(SEL)sel;
  19. //- (BOOL) conformsTo: (Protocol *)aProtocolObject;
  20. - free;
  21.  
  22. @end
  23.  
  24.