~andymatuschak/sparkle/main

« back to all changes in this revision

Viewing changes to SUAutomaticUpdateAlert.h

  • Committer: andym
  • Date: 2007-07-10 04:55:25 UTC
  • Revision ID: andym@localhost-20070710045525-3awjris3of5zx0s0
Holy restructuring, batman! Watch out for falling folders.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
//
 
2
//  SUAutomaticUpdateAlert.h
 
3
//  Sparkle
 
4
//
 
5
//  Created by Andy Matuschak on 3/18/06.
 
6
//  Copyright 2006 Andy Matuschak. All rights reserved.
 
7
//
 
8
 
 
9
#import <Cocoa/Cocoa.h>
 
10
 
 
11
@class SUAppcastItem;
 
12
@interface SUAutomaticUpdateAlert : NSWindowController {
 
13
        SUAppcastItem *updateItem;
 
14
}
 
15
 
 
16
- initWithAppcastItem:(SUAppcastItem *)item;
 
17
 
 
18
- (IBAction)relaunchNow:sender;
 
19
- (IBAction)relaunchLater:sender;
 
20
 
 
21
@end