mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-05 15:59:03 +00:00
18 lines
380 B
C
18 lines
380 B
C
|
#import <Cocoa/Cocoa.h>
|
||
|
#import "RecentDirectories.h"
|
||
|
#import "PyDupeGuru.h"
|
||
|
|
||
|
@interface AppDelegateBase : NSObject
|
||
|
{
|
||
|
IBOutlet PyDupeGuruBase *py;
|
||
|
IBOutlet RecentDirectories *recentDirectories;
|
||
|
IBOutlet NSMenuItem *unlockMenuItem;
|
||
|
|
||
|
NSString *_appName;
|
||
|
}
|
||
|
- (IBAction)unlockApp:(id)sender;
|
||
|
|
||
|
- (PyDupeGuruBase *)py;
|
||
|
- (RecentDirectories *)recentDirectories;
|
||
|
@end
|