diff options
author | Damiano Galassi <[email protected]> | 2019-03-10 14:04:51 +0100 |
---|---|---|
committer | Damiano Galassi <[email protected]> | 2019-03-12 11:42:50 +0100 |
commit | e6a0642d20d1136947099bd47dc70cd5a0f55a51 (patch) | |
tree | 6a527c24d3b0b22e3d9aedd88f9e2c8aa6b71485 /macosx/Sparkle.framework/Versions/A/Headers/SPUDownloader.h | |
parent | 9cd1ac3096533af12b4a144bdaefc9c3d89d526c (diff) |
MacGui: use ui-separation-and-xpc Sparkle branch.
Diffstat (limited to 'macosx/Sparkle.framework/Versions/A/Headers/SPUDownloader.h')
-rw-r--r-- | macosx/Sparkle.framework/Versions/A/Headers/SPUDownloader.h | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/macosx/Sparkle.framework/Versions/A/Headers/SPUDownloader.h b/macosx/Sparkle.framework/Versions/A/Headers/SPUDownloader.h deleted file mode 100644 index 5eee9bd5e..000000000 --- a/macosx/Sparkle.framework/Versions/A/Headers/SPUDownloader.h +++ /dev/null @@ -1,25 +0,0 @@ -// -// SPUDownloader.h -// Downloader -// -// Created by Mayur Pawashe on 4/1/16. -// Copyright © 2016 Sparkle Project. All rights reserved. -// - -#if __has_feature(modules) -@import Foundation; -#else -#import <Foundation/Foundation.h> -#endif -#import "SPUDownloaderProtocol.h" - -@protocol SPUDownloaderDelegate; - -// 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. -@interface SPUDownloader : NSObject <SPUDownloaderProtocol> - -// Due to XPC remote object reasons, this delegate is strongly referenced -// Invoke cleanup when done with this instance -- (instancetype)initWithDelegate:(id <SPUDownloaderDelegate>)delegate; - -@end |