main
 1//
 2//  KWGenericMatcher.h
 3//  Kiwi
 4//
 5//  Created by Allen Ding on 1/31/13.
 6//  Copyright (c) 2013 Allen Ding. All rights reserved.
 7//
 8
 9#import <Foundation/Foundation.h>
10
11@interface KWGenericMatchEvaluator : NSObject
12
13+ (BOOL)isGenericMatcher:(id)object;
14
15+ (BOOL)genericMatcher:(id)matcher matches:(id)object;
16
17@end