transmission/macosx/TrackerTableView.h

23 lines
477 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
{
//weak references
Torrent* fTorrent;
NSArray* fTrackers;
2008-05-23 19:32:35 +00:00
}
- (void)setTorrent:(Torrent*)torrent;
- (void)setTrackers:(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