transmission/macosx/TrackerTableView.h

18 lines
417 B
C
Raw Normal View History

// This file Copyright © 2008-2022 Transmission authors and contributors.
// It may be used under the MIT (SPDX: MIT) license.
// License text can be found in the licenses/ folder.
2008-05-23 19:32:35 +00:00
#import <Cocoa/Cocoa.h>
@class Torrent;
2008-05-23 19:32:35 +00:00
@interface TrackerTableView : NSTableView
@property(nonatomic, weak) Torrent* torrent;
@property(nonatomic, weak) NSArray* trackers;
2008-05-23 19:32:35 +00:00
- (void)copy:(id)sender;
- (void)paste:(id)sender;
2009-09-28 23:18:26 +00:00
2008-05-23 19:32:35 +00:00
@end