mirror of
https://github.com/arsenetar/dupeguru.git
synced 2025-03-10 13:44:37 +00:00
16 lines
294 B
Objective-C
16 lines
294 B
Objective-C
#import <Cocoa/Cocoa.h>
|
|
#import "PyApp.h"
|
|
#import "Table.h"
|
|
|
|
|
|
@interface DetailsPanelBase : NSWindowController
|
|
{
|
|
IBOutlet TableView *detailsTable;
|
|
}
|
|
- (id)initWithPy:(PyApp *)aPy;
|
|
|
|
- (void)refresh;
|
|
|
|
/* Notifications */
|
|
- (void)duplicateSelectionChanged:(NSNotification *)aNotification;
|
|
@end |