mirror of https://github.com/HandBrake/HandBrake
22 lines
481 B
Objective-C
22 lines
481 B
Objective-C
/* HBVideoController.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 HBAdvancedController;
|
|
@class HBVideo;
|
|
|
|
/**
|
|
* HBVideoController
|
|
*/
|
|
@interface HBVideoController : NSViewController
|
|
|
|
- (instancetype)initWithAdvancedController:(HBAdvancedController *)advancedController;
|
|
|
|
@property (nonatomic, readwrite, weak) HBVideo *video;
|
|
|
|
@end
|