blob: f788b648259f1c7fe6ed08b7dbd9af50b5e75027 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/* HBCroppingController.m
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 "HBCroppingController.h"
@import HandBrakeKit;
@interface HBCroppingController ()
@property (nonatomic, readonly) HBPicture *picture;
@end
@implementation HBCroppingController
- (instancetype)initWithPicture:(HBPicture *)picture
{
self = [super initWithNibName:@"HBCroppingView" bundle:nil];
if (self)
{
_picture = picture;
}
return self;
}
@end
|