Sparkle support for automatic updates
[MacVim.git] / src / MacVim / Sparkle.framework / Versions / A / Headers / SUAppcast.h
blob209fe206142320fa547448fdf0197cb4978079f5
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 //
9 #import <Cocoa/Cocoa.h>
11 @class RSS, SUAppcastItem;
12 @interface SUAppcast : NSObject {
13 NSArray *items;
14 id delegate;
17 - (void)fetchAppcastFromURL:(NSURL *)url;
18 - (void)setDelegate:delegate;
20 - (SUAppcastItem *)newestItem;
21 - (NSArray *)items;
23 @end
25 @interface NSObject (SUAppcastDelegate)
26 - appcastDidFinishLoading:(SUAppcast *)appcast;
27 @end