main
 1//
 2// Licensed under the terms in License.txt
 3//
 4// Copyright 2010 Allen Ding. All rights reserved.
 5//
 6
 7#import "KiwiConfiguration.h"
 8#import "KWMatcher.h"
 9
10@interface KWBeWithinMatcher : KWMatcher {
11@private
12    id distance;
13    id otherValue;
14}
15
16#pragma mark -
17#pragma mark Configuring Matchers
18
19- (void)beWithin:(id)aDistance of:(id)aValue;
20- (void)equal:(double)aValue withDelta:(double)aDelta;
21
22@end