WinGui: Fix another instance of the Caliburn vs Json.net sillyness where objects...
[HandBrake.git] / macosx / HBTitlePrivate.h
blob01e9532eb480f559eae90d0b2662f412c8d4832e
1 //
2 // HBTitlePrivate.h
3 // HandBrake
4 //
5 // Created by Damiano Galassi on 30/05/15.
6 //
7 //
9 #import <Foundation/Foundation.h>
10 #import "HBTitle.h"
11 #include "hb.h"
13 @interface HBTitle (Private)
15 /**
16 * Returns an HBTitle object initialized with a given title.
17 * It must be called only inside HBCore.
19 * @param title the libhb title to wrap.
20 * @param featured whether the title is the featured one or not.
22 - (instancetype)initWithTitle:(hb_title_t *)title featured:(BOOL)featured;
24 /**
25 * The internal libhb structure.
27 @property (nonatomic, readonly) hb_title_t *hb_title;
29 @end