Fixed a segfault crash that would occur if you stepped at the end of a script
[macgdbp.git] / Sparkle.framework / Versions / A / Headers / SUUpdateDriver.h
1 //
2 // SUUpdateDriver.h
3 // Sparkle
4 //
5 // Created by Andy Matuschak on 5/7/08.
6 // Copyright 2008 Andy Matuschak. All rights reserved.
7 //
8
9 #ifndef SUUPDATEDRIVER_H
10 #define SUUPDATEDRIVER_H
11
12 #import <Cocoa/Cocoa.h>
13
14 extern NSString *SUUpdateDriverFinishedNotification;
15
16 @interface SUUpdateDriver : NSObject
17 {
18 BOOL finished;
19 id delegate;
20 }
21 - (void)checkForUpdatesAtURL:(NSURL *)appcastURL hostBundle:(NSBundle *)hb;
22 - (void)abortUpdate;
23 - (BOOL)finished;
24
25 - delegate;
26 - (void)setDelegate:delegate;
27 @end
28
29 #endif