main
1//
2// Licensed under the terms in License.txt
3//
4// Copyright 2013 Allen Ding. All rights reserved.
5//
6// Contributed by https://github.com/dwlnetnl
7//
8
9#import "KiwiConfiguration.h"
10
11@protocol KWVerifying;
12
13@interface NSProxy (KiwiVerifierAdditions)
14
15#pragma mark -
16#pragma mark Attaching to Verifiers
17
18- (id)attachToVerifier:(id<KWVerifying>)aVerifier;
19- (id)attachToVerifier:(id<KWVerifying>)firstVerifier verifier:(id<KWVerifying>)secondVerifier;
20
21@end