1 /* HBAudioController.h
2 
3  This file is part of the HandBrake source code.
4  Homepage: <http://handbrake.fr/>.
5  It may be used under the terms of the GNU General Public License. */
6 
7 #import <Cocoa/Cocoa.h>
8 
9 @class HBAudio;
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
13 @interface HBAudioController : NSViewController
14 
15 @property (nonatomic, readwrite, weak) HBAudio *audio;
16 
17 @end
18 
19 NS_ASSUME_NONNULL_END
20 
21