diff options
author | ritsuka <[email protected]> | 2014-12-21 06:34:10 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-21 06:34:10 +0000 |
commit | 01b16be689edd6ade8a348466a9cb362b0d3a949 (patch) | |
tree | 79e629a396e7cf62f5c7f80a7b59f84c2166003d /macosx/HBAudioController.h | |
parent | b4a65e7027fc060c8df9deae30a2a3ab460be520 (diff) |
MacGui: use HBJob when possible.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6633 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBAudioController.h')
-rw-r--r-- | macosx/HBAudioController.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/macosx/HBAudioController.h b/macosx/HBAudioController.h index b3cc702d8..878f23a88 100644 --- a/macosx/HBAudioController.h +++ b/macosx/HBAudioController.h @@ -18,19 +18,20 @@ extern NSString *keyAudioInputChannelLayout; extern NSString *HBMixdownChangedNotification; +@class HBJob; @class HBAudio; -@class HBAudioDefaults; + /** * HBAudioController * - * Responds to HBContainerChangedNotification and HBTitleChangedNotification notifications. + * Responds to HBContainerChangedNotification. */ @interface HBAudioController : NSViewController <HBViewValidation> @property (nonatomic, readonly, retain) NSArray *masterTrackArray; @property (nonatomic, readonly) NSDictionary *noneTrack; -@property(nonatomic, readonly) HBAudioDefaults *settings; +@property (nonatomic, readwrite, assign) HBJob *job; // Get the list of audio tracks @property (readonly, nonatomic, copy) NSArray *audioTracks; |