OSDN Git Service

import 0.9.3
[handbrake-jp/handbrake-jp.git] / macosx / Sparkle.framework / Versions / A / Headers / SUAutomaticUpdateAlert.h
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