mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-16 20:29:02 +00:00
13 lines
220 B
C
13 lines
220 B
C
|
#import <Cocoa/Cocoa.h>
|
||
|
#import "cocoalib/PyApp.h"
|
||
|
#import "cocoalib/Table.h"
|
||
|
|
||
|
|
||
|
@interface DetailsPanel : NSWindowController
|
||
|
{
|
||
|
IBOutlet TableView *detailsTable;
|
||
|
}
|
||
|
- (id)initWithPy:(PyApp *)aPy;
|
||
|
|
||
|
- (void)refresh;
|
||
|
@end
|