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 KWConformToProtocolMatcher : KWMatcher {
11@private
12 Protocol *protocol;
13}
14
15#pragma mark -
16#pragma mark Configuring Matchers
17
18- (void)conformToProtocol:(Protocol *)aProtocol;
19
20@end