NSProxy+KiwiVerifierAdditions.h 444 B

1234567891011121314151617181920
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2013 Allen Ding. All rights reserved.
  5. //
  6. // Contributed by https://github.com/dwlnetnl
  7. //
  8. #import "KiwiConfiguration.h"
  9. @protocol KWVerifying;
  10. @interface NSProxy (KiwiVerifierAdditions)
  11. #pragma mark - Attaching to Verifiers
  12. - (id)attachToVerifier:(id<KWVerifying>)aVerifier;
  13. - (id)attachToVerifier:(id<KWVerifying>)firstVerifier verifier:(id<KWVerifying>)secondVerifier;
  14. @end