Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/mac_osx2/src/external/cmcrashreporter/CMCrashReporterGlobal.h @ 8356

Last change on this file since 8356 was 8356, checked in by rgrieder, 13 years ago

Merged remaining revisions in mac_osx to mac_osx2 branch.

File size: 779 bytes
Line 
1//
2//  CMCrashReporterGlobal.h
3//  CMCrashReporter-App
4//
5//  Created by Jelle De Laender on 20/01/08.
6//  Copyright 2008 CodingMammoth. All rights reserved.
7//  Copyright 2010 CodingMammoth. Revision. All rights reserved.
8
9//
10
11#import <Cocoa/Cocoa.h>
12
13
14@interface CMCrashReporterGlobal : NSObject
15{
16};
17
18+ (NSString *)appName;
19+ (NSString *)appUiName;
20+ (NSString *)appVersion;
21
22+ (BOOL)isRunningLeopard;
23+ (BOOL)checkOnCrashes;
24
25+ (NSString *)crashReportEmail;
26+ (NSString *)crashReportURL;
27+ (NSString *)osVersion;
28
29+ (int)numberOfMaximumReports;
30
31+ (void)setAppName:(NSString *)name;
32+ (void)setAppUiName:(NSString *)name;
33+ (void)setAppVersion:(NSString *)version;
34+ (void)setCrashReportEmail:(NSString *)emailTo;
35+ (void)setCrashReportURL:(NSString *)reportServerUrl;
36
37@end
Note: See TracBrowser for help on using the repository browser.