summaryrefslogtreecommitdiff
path: root/hw/xquartz/bundle/Sparkle.framework/Versions/A/Headers/SUStatusChecker.h
blob: e83d15206e4fea3d69800213402287b376126fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//
//  SUStatusChecker.h
//  Sparkle
//
//  Created by Evan Schoenberg on 7/6/06.
//

#import <Cocoa/Cocoa.h>
#import <Sparkle/SUUpdater.h>

@class SUStatusChecker;

@protocol SUStatusCheckerDelegate <NSObject>
//versionString will be nil and isNewVersion will be NO if version checking fails.
- (void)statusChecker:(SUStatusChecker *)statusChecker foundVersion:(NSString *)versionString isNewVersion:(BOOL)isNewVersion;
@end

@interface SUStatusChecker : SUUpdater {
	id<SUStatusCheckerDelegate> scDelegate;
}

// Create a status checker which will notifiy delegate once the appcast version is determined.
// Notification occurs via the method defined in the SUStatusCheckerDelegate informal protocol.
+ (SUStatusChecker *)statusCheckerForDelegate:(id<SUStatusCheckerDelegate>)delegate;

@end