1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-22 15:54:57 +00:00
transmission/macosx/TrackerTableView.h

18 lines
409 B
C
Raw Normal View History

// This file Copyright © 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 <AppKit/AppKit.h>
2008-05-23 19:32:35 +00:00
@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