/* NSProtocolChecker.h Copyright (c) 1995-2012, Apple Inc. All rights reserved. */ #import #import @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