mirror of
https://github.com/transmission/transmission
synced 2025-01-19 05:19:54 +00:00
af3a4d4557
* Update enabled complier warnings * Convert to Modern Objective-C syntax using Xcode's tool * Convert to modern objc syntax manually, fix some PR issues * Remove unnecessary parentheses * Use property syntax for all custom properties * Use property syntax for all system properties * Fix erroneously autoreleased values * Revert VDKQueue to old objc syntax Co-authored-by: Mike Gelfand <mikedld@users.noreply.github.com> Co-authored-by: Mitch Livingston <livings124@mac.com>
18 lines
450 B
Objective-C
18 lines
450 B
Objective-C
//
|
|
// ShareTorrentFileHelper.h
|
|
// Transmission
|
|
//
|
|
// Created by Mitchell Livingston on 1/10/14.
|
|
// Copyright (c) 2014 The Transmission Project. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface ShareTorrentFileHelper : NSObject
|
|
|
|
@property (nonatomic, class, readonly) ShareTorrentFileHelper * sharedHelper;
|
|
|
|
@property (nonatomic, readonly) NSArray *shareTorrentURLs;
|
|
@property (nonatomic, readonly) NSArray *menuItems;
|
|
|
|
@end
|