this repo has no description
1#include <AppKit/AppKit.h>
2
3@interface CrashManager : NSObject
4{
5 id descriptionLabel;
6 NSString* executablePath;
7 NSString* commandLine;
8 NSString* shortDescription;
9 NSString* fullLog;
10}
11- (void) close: (id)sender;
12- (void) debugInfo: (id)sender;
13- (void) reopen: (id)sender;
14- (id) init;
15@end