mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-03-10 05:34:36 +00:00
13 lines
220 B
Objective-C
13 lines
220 B
Objective-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 |