NSObject+KiwiVerifierAdditions.m 375 B

12345678910111213141516171819
  1. //
  2. // Licensed under the terms in License.txt
  3. //
  4. // Copyright 2010 Allen Ding. All rights reserved.
  5. //
  6. #import "NSObject+KiwiVerifierAdditions.h"
  7. #import "KWVerifying.h"
  8. @implementation NSObject(KiwiVerifierAdditions)
  9. #pragma mark - Attaching to Verifiers
  10. - (id)attachToVerifier:(id<KWVerifying>)aVerifier {
  11. [aVerifier setSubject:self];
  12. return aVerifier;
  13. }
  14. @end