NSObject+KiwiVerifierAdditions.h 299 B

1234567891011121314151617
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2010 Allen Ding. All rights reserved.
  5. //
  6. #import "KiwiConfiguration.h"
  7. @protocol KWVerifying;
  8. @interface NSObject(KiwiVerifierAdditions)
  9. #pragma mark - Attaching to Verifiers
  10. - (id)attachToVerifier:(id<KWVerifying>)aVerifier;
  11. @end