transmission/macosx/TorrentTableView.h

18 lines
280 B
C
Raw Normal View History

2006-01-12 18:29:20 +00:00
#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