24 lines
455 B
Objective-C
24 lines
455 B
Objective-C
//
|
|
// SUAutomaticUpdateDriver.h
|
|
// Sparkle
|
|
//
|
|
// Created by Andy Matuschak on 5/6/08.
|
|
// Copyright 2008 Andy Matuschak. All rights reserved.
|
|
//
|
|
|
|
#ifndef SUAUTOMATICUPDATEDRIVER_H
|
|
#define SUAUTOMATICUPDATEDRIVER_H
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "SUBasicUpdateDriver.h"
|
|
|
|
@class SUAutomaticUpdateAlert;
|
|
@interface SUAutomaticUpdateDriver : SUBasicUpdateDriver {
|
|
BOOL postponingInstallation, showErrors;
|
|
SUAutomaticUpdateAlert *alert;
|
|
}
|
|
|
|
@end
|
|
|
|
#endif
|