25 lines
480 B
Objective-C
25 lines
480 B
Objective-C
//
|
|
// TDNPreferencesWindowController.h
|
|
// QuietUnrar
|
|
//
|
|
// Created by Robert McGovern on 2021/05/30.
|
|
//
|
|
|
|
#ifndef TDNPreferencesWindowController_h
|
|
#define TDNPreferencesWindowController_h
|
|
|
|
@import Cocoa;
|
|
#import "QuietUnrarAppDelegate.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
//@class QuietUnrarAppDelegate;
|
|
|
|
@interface TDNPreferencesWindowController : NSWindowController
|
|
@property QuietUnrarAppDelegate * quietUnrar;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
#endif // TDNPreferencesWindowController_h
|