mirror of
https://github.com/transmission/transmission
synced 2024-12-27 01:57:52 +00:00
18 lines
361 B
Objective-C
18 lines
361 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
|
|
|
|
+ (ShareTorrentFileHelper *) sharedHelper;
|
|
|
|
- (NSArray *) shareTorrentURLs;
|
|
- (NSArray *) menuItems;
|
|
|
|
@end
|