Fix cover file not sent over wire
[fanfix.git] / src / be / nikiroo / fanfix / output / BasicOutput.java
index 036a1564d0a594eae2e4d758f0dd16f40a3fcd44..30c2ac66642d2608391b8543af76a9366e679b9e 100644 (file)
@@ -240,6 +240,25 @@ public abstract class BasicOutput {
                return type;
        }
 
+       /**
+        * Enable the creation of a .info file next to the resulting processed file.
+        * 
+        * @return TRUE to enable it
+        */
+       protected boolean isWriteInfo() {
+               return writeInfo;
+       }
+
+       /**
+        * Enable the creation of a cover file next to the resulting processed file
+        * if possible.
+        * 
+        * @return TRUE to enable it
+        */
+       protected boolean isWriteCover() {
+               return writeCover;
+       }
+
        /**
         * The output type.
         *