2014-07-15 18:30:51 +00:00
|
|
|
/* ChapterTitles.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. */
|
|
|
|
|
2014-08-10 16:05:07 +00:00
|
|
|
#import <Cocoa/Cocoa.h>
|
2014-07-15 18:30:51 +00:00
|
|
|
|
2014-12-21 06:34:10 +00:00
|
|
|
@class HBJob;
|
|
|
|
|
2019-08-12 10:19:00 +02:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
|
2014-12-22 17:12:16 +00:00
|
|
|
@interface HBChapterTitlesController : NSViewController
|
2014-07-15 18:30:51 +00:00
|
|
|
|
2015-05-30 07:17:22 +00:00
|
|
|
@property (nonatomic, readwrite, weak) HBJob *job;
|
2014-12-21 06:34:10 +00:00
|
|
|
|
2014-07-15 18:30:51 +00:00
|
|
|
@end
|
2019-08-12 10:19:00 +02:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
|