NSString *bsdName;
}
+- (instancetype)init
+{
+ @throw nil;
+}
+
+ (HBDVDDetector *)detectorForPath: (NSString *)aPath
{
return [[self alloc] initWithPath:aPath];
@implementation HBDockTile
+- (instancetype)init
+{
+ @throw nil;
+}
+
- (instancetype)initWithDockTile:(NSDockTile *)dockTile image:(NSImage *)image
{
self = [super init];
@property (nonatomic, readonly) NSString *language;
@property (nonatomic, readonly) NSString *iso639_2;
+- (instancetype)init NS_UNAVAILABLE;
- (instancetype)initWithLanguage:(NSString *)value iso639_2code:(NSString *)code NS_DESIGNATED_INITIALIZER;
@end;
@implementation HBLang
+- (instancetype)init
+{
+ @throw nil;
+}
+
- (instancetype)initWithLanguage:(NSString *)value iso639_2code:(NSString *)code
{
self = [super init];
- (instancetype)initWithPresetManager:(HBPresetsManager *)presetManager;
-@property (nonatomic, readwrite, weak) id<HBPresetsViewControllerDelegate> delegate;
+@property (nonatomic, readwrite, assign) id<HBPresetsViewControllerDelegate> delegate;
- (IBAction)exportPreset:(id)sender;
- (IBAction)importPreset:(id)sender;
@interface HBPreviewGenerator : NSObject
-@property (nonatomic, weak, nullable) id <HBPreviewGeneratorDelegate> delegate;
+@property (nonatomic, assign, nullable) id <HBPreviewGeneratorDelegate> delegate;
+- (instancetype)init NS_UNAVAILABLE;
- (instancetype)initWithCore:(HBCore *)core job:(HBJob *)job NS_DESIGNATED_INITIALIZER;
/* Still image generator */
@implementation HBPreviewGenerator
+- (instancetype)init
+{
+ @throw nil;
+}
+
- (instancetype)initWithCore:(HBCore *)core job:(HBJob *)job
{
self = [super init];
/// The HBCore used for encoding.
@property (nonatomic, readonly) HBCore *core;
-@property (nonatomic, weak, nullable) HBController *controller;
+@property (nonatomic, assign, nullable) HBController *controller;
@property (nonatomic, weak, nullable) HBAppDelegate *delegate;
@property (nonatomic, readonly) NSUInteger count;
@end
@interface HBPresetsTransformer : NSValueTransformer
+- (instancetype)init NS_UNAVAILABLE;
- (instancetype)initWithEncoder:(int)encoder NS_DESIGNATED_INITIALIZER;
@end
int _encoder;
}
+- (instancetype)init
+{
+ @throw nil;
+}
+
- (instancetype)initWithEncoder:(int)encoder
{
self = [super init];
double _max;
}
+- (instancetype)init
+{
+ return [self initWithReversedDirection:NO min:0 max:50];
+}
+
- (instancetype)initWithReversedDirection:(BOOL)reverse min:(double)min max:(double)max
{
self = [super init];