blob: a6e22680c83b987ccd1d4966550ec4bab5c55704 (
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
|
/* HBOutputFileWriter.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>
#import "HBOutputRedirect.h"
NS_ASSUME_NONNULL_BEGIN
/**
* This class is used to listen to HBOutputRedirect
* and write the output to a file.
*/
@interface HBOutputFileWriter : NSObject <HBOutputRedirectListening>
- (nullable instancetype)initWithFileURL:(NSURL *)url;
- (void)write:(NSString *)text;
- (void)clear;
@property (nonatomic, readonly) NSURL *url;
@end
NS_ASSUME_NONNULL_END
|