2010-01-06 18:11:16 -06:00
|
|
|
//
|
|
|
|
// MGMReporter.h
|
|
|
|
// GeckoReporter
|
|
|
|
//
|
|
|
|
// Created by Mr. Gecko on 12/27/09.
|
|
|
|
// Copyright 2010 by Mr. Gecko's Media (James Coleman). All rights reserved. http://mrgeckosmedia.com/
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
|
|
|
extern NSString * const MGMGRDoneNotification;
|
|
|
|
extern NSString * const MGMGRUserEmail;
|
|
|
|
extern NSString * const MGMGRUserName;
|
|
|
|
extern NSString * const MGMGRLastCrashDate;
|
|
|
|
extern NSString * const MGMGRSendAll;
|
|
|
|
extern NSString * const MGMGRIgnoreAll;
|
|
|
|
|
2010-05-05 17:09:21 -05:00
|
|
|
#define MGMGRReleaseDebug 0
|
2010-01-06 18:11:16 -06:00
|
|
|
|
|
|
|
@class MGMSender;
|
|
|
|
|
|
|
|
@interface MGMReporter : NSObject {
|
|
|
|
BOOL foundReport;
|
|
|
|
NSDate *lastDate;
|
|
|
|
MGMSender *mailSender;
|
|
|
|
}
|
|
|
|
+ (id)sharedReporter;
|
|
|
|
@end
|