KWProbe.h 253 B

1234567891011121314
  1. //
  2. // KWProbe.h
  3. // iOSFalconCore
  4. //
  5. // Created by Luke Redpath on 13/01/2011.
  6. // Copyright 2011 LJR Software Limited. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @protocol KWProbe <NSObject>
  10. - (BOOL)isSatisfied;
  11. - (void)sample;
  12. @end