Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Added NSURLDownloadDelegate declarations
  • Loading branch information
kornelski committed Feb 1, 2014
1 parent 3f40f44 commit 4ab8fd1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion SUAppcast.h
Expand Up @@ -10,7 +10,7 @@
#define SUAPPCAST_H

@class SUAppcastItem;
@interface SUAppcast : NSObject
@interface SUAppcast : NSObject<NSURLDownloadDelegate>
{
@private
NSArray *items;
Expand Down
2 changes: 1 addition & 1 deletion SUBasicUpdateDriver.h
Expand Up @@ -13,7 +13,7 @@
#import "SUUpdateDriver.h"

@class SUAppcastItem, SUUnarchiver, SUAppcast, SUUnarchiver, SUHost;
@interface SUBasicUpdateDriver : SUUpdateDriver {
@interface SUBasicUpdateDriver : SUUpdateDriver<NSURLDownloadDelegate> {
SUAppcastItem *updateItem;
SUAppcastItem *nonDeltaUpdateItem;

Expand Down
2 changes: 1 addition & 1 deletion SUUpdateDriver.h
Expand Up @@ -14,7 +14,7 @@
extern NSString * const SUUpdateDriverFinishedNotification;

@class SUHost, SUUpdater;
@interface SUUpdateDriver : NSObject
@interface SUUpdateDriver : NSObject<NSURLDownloadDelegate>
{
SUHost *host;
SUUpdater *updater;
Expand Down

0 comments on commit 4ab8fd1

Please sign in to comment.