blob: 49c3599e2986c8b08be26723c03af837032a9e27 (
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
28
29
30
31
32
33
|
/* HBStateFormatter.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 <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
/**
* Instances of HBStateFormatter format and conver a hb_state_t struct to a textual representation.
*/
@interface HBStateFormatter : NSObject
/**
* The title to show in the output info.
*/
@property (nonatomic, readwrite, copy) NSString *title;
/**
* Break the output string in two lines.
*/
@property (nonatomic, readwrite) BOOL twoLines;
/**
* Shows the pass number in the output string
*/
@property (nonatomic, readwrite) BOOL showPassNumber;
@end
NS_ASSUME_NONNULL_END
|