summaryrefslogtreecommitdiffstats
path: root/macosx/HBAudioDefaultsController.h
diff options
context:
space:
mode:
Diffstat (limited to 'macosx/HBAudioDefaultsController.h')
-rw-r--r--macosx/HBAudioDefaultsController.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/macosx/HBAudioDefaultsController.h b/macosx/HBAudioDefaultsController.h
new file mode 100644
index 000000000..c592ea6eb
--- /dev/null
+++ b/macosx/HBAudioDefaultsController.h
@@ -0,0 +1,17 @@
+/* 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>
+
+@class HBAudioSettings;
+
+@interface HBAudioDefaultsController : NSWindowController
+
+- (instancetype)initWithSettings:(HBAudioSettings *)settings;
+
+@property (nonatomic, readwrite, assign) id delegate;
+
+@end