diff options
Diffstat (limited to 'macosx/HBAddCategoryController.h')
-rw-r--r-- | macosx/HBAddCategoryController.h | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/macosx/HBAddCategoryController.h b/macosx/HBAddCategoryController.h new file mode 100644 index 000000000..d6fe70e00 --- /dev/null +++ b/macosx/HBAddCategoryController.h @@ -0,0 +1,22 @@ +/* HBAddCategoryController.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 HBPresetsManager; +@class HBPreset; + +NS_ASSUME_NONNULL_BEGIN + +@interface HBAddCategoryController : NSWindowController + +- (instancetype)initWithPresetManager:(HBPresetsManager *)manager; + +@property (nonatomic, readonly, nullable) HBPreset *category; + +@end + +NS_ASSUME_NONNULL_END |