1 /*  ChapterTitles.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 HBJob;
10 
11 NS_ASSUME_NONNULL_BEGIN
12 
13 @interface HBChapterTitlesController : NSViewController
14 
15 @property (nonatomic, readwrite, weak) HBJob *job;
16 
17 @end
18 
19 NS_ASSUME_NONNULL_END
20 
21