2015-01-13 08:08:04 +00:00
|
|
|
/* HBAudioController.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. */
|
2010-09-15 17:49:16 +00:00
|
|
|
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
|
2015-01-13 08:08:04 +00:00
|
|
|
@class HBAudio;
|
2014-12-21 06:34:10 +00:00
|
|
|
|
2019-08-12 10:19:00 +02:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2014-12-27 12:29:00 +00:00
|
|
|
@interface HBAudioController : NSViewController
|
2010-09-15 17:49:16 +00:00
|
|
|
|
2015-05-30 07:17:22 +00:00
|
|
|
@property (nonatomic, readwrite, weak) HBAudio *audio;
|
2010-09-15 17:49:16 +00:00
|
|
|
|
|
|
|
@end
|
2019-08-12 10:19:00 +02:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
|