WinGui: Fix another instance of the Caliburn vs Json.net sillyness where objects...
[HandBrake.git] / macosx / HBAddPresetController.h
blob7162767fd060bdc5a94fd7571b73bbd032f434a6
1 //
2 // HBAddPresetController.h
3 // HandBrake
4 //
5 // Created by Damiano Galassi on 23/11/14.
6 //
7 //
9 #import <Cocoa/Cocoa.h>
11 NS_ASSUME_NONNULL_BEGIN
13 @class HBPreset;
15 @interface HBAddPresetController : NSWindowController
17 - (instancetype)initWithPreset:(HBPreset *)preset videoSize:(NSSize)size;
19 @property (nonatomic, readonly) HBPreset *preset;
21 @end
23 NS_ASSUME_NONNULL_END