// // 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 #import "SUBasicUpdateDriver.h" @class SUStatusController, SUUpdateAlert; @interface SUUIBasedUpdateDriver : SUBasicUpdateDriver { SUStatusController *statusController; SUUpdateAlert *updateAlert; } - (void)showModalAlert:(NSAlert *)alert; - (IBAction)cancelDownload: (id)sender; - (void)installAndRestart: (id)sender; @end #endif