Fixed a segfault crash that would occur if you stepped at the end of a script
[macgdbp.git] / Sparkle.framework / Versions / A / Headers / SUAutomaticUpdateDriver.h
1 //
2 // SUAutomaticUpdateDriver.h
3 // Sparkle
4 //
5 // Created by Andy Matuschak on 5/6/08.
6 // Copyright 2008 Andy Matuschak. All rights reserved.
7 //
8
9 #ifndef SUAUTOMATICUPDATEDRIVER_H
10 #define SUAUTOMATICUPDATEDRIVER_H
11
12 #import <Cocoa/Cocoa.h>
13 #import "SUBasicUpdateDriver.h"
14
15 @class SUAutomaticUpdateAlert;
16 @interface SUAutomaticUpdateDriver : SUBasicUpdateDriver {
17 BOOL postponingInstallation, showErrors;
18 SUAutomaticUpdateAlert *alert;
19 }
20
21 @end
22
23 #endif