mirror of
https://github.com/transmission/transmission
synced 2024-12-23 16:24:02 +00:00
17 lines
280 B
Objective-C
17 lines
280 B
Objective-C
#include <Cocoa/Cocoa.h>
|
|
#include <transmission.h>
|
|
|
|
@class Controller;
|
|
|
|
@interface TorrentTableView : NSTableView
|
|
|
|
{
|
|
IBOutlet Controller * fController;
|
|
|
|
tr_stat_t * fStat;
|
|
NSPoint fClickPoint;
|
|
}
|
|
|
|
- (void) updateUI: (tr_stat_t *) stat;
|
|
|
|
@end
|