_RXDelegateProxy.h 512 B

12345678910111213141516171819202122
  1. //
  2. // _RXDelegateProxy.h
  3. // RxCocoa
  4. //
  5. // Created by Krunoslav Zaher on 7/4/15.
  6. // Copyright © 2015 Krunoslav Zaher. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface _RXDelegateProxy : NSObject
  10. @property (nonatomic, weak, readonly) id _forwardToDelegate;
  11. -(void)_setForwardToDelegate:(id)forwardToDelegate retainDelegate:(BOOL)retainDelegate;
  12. -(BOOL)hasWiredImplementationForSelector:(SEL)selector;
  13. -(void)interceptedSelector:(SEL)selector withArguments:(NSArray*)arguments;
  14. @end