mirror of https://github.com/HandBrake/HandBrake
20 lines
339 B
Objective-C
20 lines
339 B
Objective-C
//
|
|
// HBPreviewViewController.h
|
|
// HandBrake
|
|
//
|
|
// Created by Damiano Galassi on 14/12/2017.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
|
|
@class HBPreviewGenerator;
|
|
@class HBPreviewController;
|
|
|
|
@interface HBPreviewViewController : NSViewController
|
|
|
|
@property (nonatomic, readwrite, weak, nullable) HBPreviewGenerator *generator;
|
|
|
|
- (void)update;
|
|
|
|
@end
|