KWGenericMatcher.h 400 B

123456789101112131415161718192021222324
  1. //
  2. // KWGenericMatcher.h
  3. // Kiwi
  4. //
  5. // Created by Luke Redpath on 24/01/2011.
  6. // Copyright 2011 Allen Ding. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "KWMatcher.h"
  10. @protocol KWGenericMatching <NSObject>
  11. - (BOOL)matches:(id)object;
  12. @end
  13. @interface KWGenericMatcher : KWMatcher
  14. #pragma mark - Configuring Matchers
  15. - (void)match:(id<KWGenericMatching>)aMatcher;
  16. @end