summaryrefslogtreecommitdiffstats
path: root/macosx/HBJobOutputFileWriter.h
diff options
context:
space:
mode:
authorritsuka <[email protected]>2015-02-20 07:59:38 +0000
committerritsuka <[email protected]>2015-02-20 07:59:38 +0000
commit214fed29cdc153d4c0581bc0516b258a108cef22 (patch)
tree105b8454670e28f33a721a4d0b328dc2565a2446 /macosx/HBJobOutputFileWriter.h
parentfea0f7fa7473a10e56d6da95f47e03ba44ad2c35 (diff)
MacGui: refactor the stderr/stdout redirect code to be more modular.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6927 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'macosx/HBJobOutputFileWriter.h')
-rw-r--r--macosx/HBJobOutputFileWriter.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/macosx/HBJobOutputFileWriter.h b/macosx/HBJobOutputFileWriter.h
new file mode 100644
index 000000000..3cf2e7f88
--- /dev/null
+++ b/macosx/HBJobOutputFileWriter.h
@@ -0,0 +1,19 @@
+/* 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"
+
+@class HBJob;
+
+/**
+ * Redirects the output to a new file based on the job destination
+ * and the current logging preference.
+ */
+@interface HBJobOutputFileWriter : HBOutputFileWriter
+
+- (instancetype)initWithJob:(HBJob *)job;
+
+@end