main
 1//
 2//  KWExampleGroupDelegate.h
 3//  Kiwi
 4//
 5//  Created by Luke Redpath on 08/09/2011.
 6//  Copyright 2011 Allen Ding. All rights reserved.
 7//
 8
 9#import <Foundation/Foundation.h>
10
11@class KWExample;
12@class KWFailure;
13
14@protocol KWExampleDelegate <NSObject>
15
16- (void)example:(KWExample *)example didFailWithFailure:(KWFailure *)failure;
17
18@end