OSDN Git Service

MacGui: Sparkle Updater initial implementation
[handbrake-jp/handbrake-jp-git.git] / macosx / Sparkle.framework / Versions / A / Headers / SUAppcast.h
1 //
2 //  SUAppcast.h
3 //  Sparkle
4 //
5 //  Created by Andy Matuschak on 3/12/06.
6 //  Copyright 2006 Andy Matuschak. All rights reserved.
7 //
8
9 #import <Cocoa/Cocoa.h>
10
11 @class RSS, SUAppcastItem;
12 @interface SUAppcast : NSObject {
13         NSArray *items;
14         id delegate;
15 }
16
17 - (void)fetchAppcastFromURL:(NSURL *)url;
18 - (void)setDelegate:delegate;
19
20 - (SUAppcastItem *)newestItem;
21 - (NSArray *)items;
22
23 @end
24
25 @interface NSObject (SUAppcastDelegate)
26 - appcastDidFinishLoading:(SUAppcast *)appcast;
27 @end