1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-24 08:43:27 +00:00
transmission/macosx/TorrentTableView.h
2006-01-12 18:29:20 +00:00

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