KWExampleDelegate.h 339 B

123456789101112131415161718
  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. #import <Foundation/Foundation.h>
  9. @class KWExample;
  10. @class KWFailure;
  11. @protocol KWExampleDelegate <NSObject>
  12. - (void)example:(KWExample *)example didFailWithFailure:(KWFailure *)failure;
  13. @end