2014-08-04 07:12:12 +00:00
|
|
|
/* HBAudioDefaultsController.h $
|
|
|
|
|
|
|
|
This file is part of the HandBrake source code.
|
|
|
|
Homepage: <http://handbrake.fr/>.
|
|
|
|
It may be used under the terms of the GNU General Public License. */
|
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2014-08-22 06:30:58 +00:00
|
|
|
@class HBAudioDefaults;
|
2014-08-04 07:12:12 +00:00
|
|
|
|
2019-08-12 10:19:00 +02:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2014-08-04 07:12:12 +00:00
|
|
|
@interface HBAudioDefaultsController : NSWindowController
|
|
|
|
|
2014-08-22 06:30:58 +00:00
|
|
|
- (instancetype)initWithSettings:(HBAudioDefaults *)settings;
|
2014-08-04 07:12:12 +00:00
|
|
|
|
|
|
|
@end
|
2019-08-12 10:19:00 +02:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
|