26 lines
557 B
Objective-C
26 lines
557 B
Objective-C
//
|
|
// SUUIBasedUpdateDriver.h
|
|
// Sparkle
|
|
//
|
|
// Created by Andy Matuschak on 5/5/08.
|
|
// Copyright 2008 Andy Matuschak. All rights reserved.
|
|
//
|
|
|
|
#ifndef SUUIBASEDUPDATEDRIVER_H
|
|
#define SUUIBASEDUPDATEDRIVER_H
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "SUBasicUpdateDriver.h"
|
|
#import "SUUpdateAlert.h"
|
|
|
|
@class SUStatusController;
|
|
|
|
@interface SUUIBasedUpdateDriver : SUBasicUpdateDriver <SUUnarchiverDelegate, SUUpdateAlertDelegate>
|
|
|
|
- (void)showModalAlert:(NSAlert *)alert;
|
|
- (IBAction)cancelDownload:(id)sender;
|
|
- (void)installAndRestart:(id)sender;
|
|
|
|
@end
|
|
|
|
#endif
|