1234567891011121314151617181920 |
- //
- // Licensed under the terms in License.txt
- //
- // Copyright 2010 Allen Ding. All rights reserved.
- //
- #import "KiwiConfiguration.h"
- @class KWCaptureSpy;
- @protocol KiwiSpyAdditions <NSObject>
- - (KWCaptureSpy *)captureArgument:(SEL)selector atIndex:(NSUInteger)index;
- + (KWCaptureSpy *)captureArgument:(SEL)selector atIndex:(NSUInteger)index;
- @end
- @interface NSObject (KiwiSpyAdditions) <KiwiSpyAdditions>
- @end
|