mirror of
https://github.com/transmission/transmission
synced 2024-12-24 00:34:04 +00:00
1b36e34d9b
Unfortunately, due to the nature of the issue a manual update to a new version will be required. Fixes: #600
20 lines
428 B
Objective-C
20 lines
428 B
Objective-C
//
|
|
// SPUDownloaderSession.h
|
|
// Sparkle
|
|
//
|
|
// Created by Deadpikle on 12/20/17.
|
|
// Copyright © 2017 Sparkle Project. All rights reserved.
|
|
//
|
|
|
|
#if __has_feature(modules)
|
|
@import Foundation;
|
|
#else
|
|
#import <Foundation/Foundation.h>
|
|
#endif
|
|
#import "SPUDownloader.h"
|
|
#import "SPUDownloaderProtocol.h"
|
|
|
|
NS_CLASS_AVAILABLE(NSURLSESSION_AVAILABLE, 7_0)
|
|
@interface SPUDownloaderSession : SPUDownloader <SPUDownloaderProtocol>
|
|
|
|
@end
|