1234567891011121314151617 |
- //
- // KSCrashDoctor.h
- // KSCrash
- //
- // Created by Karl Stenerud on 2012-11-10.
- // Copyright (c) 2012 Karl Stenerud. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @interface KSCrashDoctor : NSObject
- + (KSCrashDoctor*) doctor;
- - (NSString*) diagnoseCrash:(NSDictionary*) crashReport;
- @end
|