Upgrade to Sparkle 1.21.3.
[macgdbp.git] / Sparkle.framework / Versions / A / Headers / SPUDownloader.h
1 //
2 // SPUDownloader.h
3 // Downloader
4 //
5 // Created by Mayur Pawashe on 4/1/16.
6 // Copyright © 2016 Sparkle Project. All rights reserved.
7 //
8
9 #if __has_feature(modules)
10 @import Foundation;
11 #else
12 #import <Foundation/Foundation.h>
13 #endif
14 #import "SPUDownloaderProtocol.h"
15
16 @protocol SPUDownloaderDelegate;
17
18 // This object implements the protocol which we have defined. It provides the actual behavior for the service. It is 'exported' by the service to make it available to the process hosting the service over an NSXPCConnection.
19 @interface SPUDownloader : NSObject <SPUDownloaderProtocol>
20
21 // Due to XPC remote object reasons, this delegate is strongly referenced
22 // Invoke cleanup when done with this instance
23 - (instancetype)initWithDelegate:(id <SPUDownloaderDelegate>)delegate;
24
25 @end