diff options
Diffstat (limited to 'macosx/HBSubtitlesDefaultsController.h')
-rw-r--r-- | macosx/HBSubtitlesDefaultsController.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/macosx/HBSubtitlesDefaultsController.h b/macosx/HBSubtitlesDefaultsController.h new file mode 100644 index 000000000..12056a021 --- /dev/null +++ b/macosx/HBSubtitlesDefaultsController.h @@ -0,0 +1,17 @@ +/* HBSubtitlesDefaultsController.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. */ + +#import <Cocoa/Cocoa.h> + +@class HBSubtitlesSettings; + +@interface HBSubtitlesDefaultsController : NSWindowController + +- (instancetype)initWithSettings:(HBSubtitlesSettings *)settings; + +@property (nonatomic, readwrite, assign) id delegate; + +@end |