KSCrashDoctor.h 308 B

1234567891011121314151617
  1. //
  2. // KSCrashDoctor.h
  3. // KSCrash
  4. //
  5. // Created by Karl Stenerud on 2012-11-10.
  6. // Copyright (c) 2012 Karl Stenerud. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @interface KSCrashDoctor : NSObject
  10. + (KSCrashDoctor*) doctor;
  11. - (NSString*) diagnoseCrash:(NSDictionary*) crashReport;
  12. @end