~andymatuschak/sparkle/main

« back to all changes in this revision

Viewing changes to SUAppcast.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
//  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
 
 
b'\\ No newline at end of file'