2015-02-20 07:59:38 +00:00
|
|
|
/* HBJobOutputFileWriter.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 "HBOutputFileWriter.h"
|
|
|
|
|
2020-06-27 14:13:12 +02:00
|
|
|
@import HandBrakeKit;
|
2015-07-03 18:57:44 +00:00
|
|
|
|
2020-06-27 14:13:12 +02:00
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
2015-02-20 07:59:38 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Redirects the output to a new file based on the job destination
|
|
|
|
* and the current logging preference.
|
|
|
|
*/
|
|
|
|
@interface HBJobOutputFileWriter : HBOutputFileWriter
|
|
|
|
|
2015-07-03 18:57:44 +00:00
|
|
|
- (nullable instancetype)initWithJob:(HBJob *)job NS_DESIGNATED_INITIALIZER;
|
2015-02-20 07:59:38 +00:00
|
|
|
|
|
|
|
@end
|
2015-07-03 18:57:44 +00:00
|
|
|
|
|
|
|
NS_ASSUME_NONNULL_END
|