/* HBOutputFileWriter.h $ This file is part of the HandBrake source code. Homepage: . It may be used under the terms of the GNU General Public License. */ #import #import "HBOutputRedirect.h" /** * This class is used to listen to HBOutputRedirect * and write the output to a file. */ @interface HBOutputFileWriter : NSObject - (instancetype)initWithFileURL:(NSURL *)url; - (void)write:(NSString *)text; - (void)clear; @property (nonatomic, readonly) NSURL *url; @end