// // SUAppcast.h // Sparkle // // Created by Andy Matuschak on 3/12/06. // Copyright 2006 Andy Matuschak. All rights reserved. // #ifndef SUAPPCAST_H #define SUAPPCAST_H #import #import "SUExport.h" @class SUAppcastItem; SU_EXPORT @interface SUAppcast : NSObject @property (copy) NSString *userAgentString; @property (copy) NSDictionary *httpHeaders; - (void)fetchAppcastFromURL:(NSURL *)url completionBlock:(void (^)(NSError *))err; - (SUAppcast *)copyWithoutDeltaUpdates; @property (readonly, copy) NSArray *items; @end #endif