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
 9@protocol KWMessageSpying<NSObject>
10
11#pragma mark -
12#pragma mark Spying on Messages
13
14- (void)object:(id)anObject didReceiveInvocation:(NSInvocation *)anInvocation;
15
16@end