diff options
author | ritsuka <[email protected]> | 2014-12-03 19:16:55 +0000 |
---|---|---|
committer | ritsuka <[email protected]> | 2014-12-03 19:16:55 +0000 |
commit | 82ea5dc61ad639506b4662a7bb7b573a4415a526 (patch) | |
tree | 451ae78f0f6a114fa5aa0a6ecbe4cce0dbb87b53 /macosx/HBCore.h | |
parent | 8590673b1f5e8a0440a9e7b0e879e7b73a94f9f7 (diff) |
MacGui: added a new HBTitle class to wraps the hb_tltle_t parts used by the mac gui. Small improvements to the HBCore related classes.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6576 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBCore.h')
-rw-r--r-- | macosx/HBCore.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/macosx/HBCore.h b/macosx/HBCore.h index 71b352517..a9dd127e4 100644 --- a/macosx/HBCore.h +++ b/macosx/HBCore.h @@ -5,6 +5,7 @@ It may be used under the terms of the GNU General Public License. */ #import <Cocoa/Cocoa.h> + #include "hb.h" // These constants specify the current state of HBCore. @@ -101,6 +102,11 @@ extern NSString *HBCoreMuxingNotification; - (void)cancelScan; /** + * An array of HBTitles found by the latest scan. + */ +@property (nonatomic, readonly) NSArray *titles; + +/** * Starts the libhb encoding session. * * This method must be called after all jobs have been added. |