mirror of
https://github.com/transmission/transmission.git
synced 2025-12-20 02:18:42 +00:00
18 lines
280 B
Objective-C
18 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
|