diff options
Diffstat (limited to 'win/C#/EncodeQueue/EncodeProcess.cs')
-rw-r--r-- | win/C#/EncodeQueue/EncodeProcess.cs | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/win/C#/EncodeQueue/EncodeProcess.cs b/win/C#/EncodeQueue/EncodeProcess.cs deleted file mode 100644 index c65caea0d..000000000 --- a/win/C#/EncodeQueue/EncodeProcess.cs +++ /dev/null @@ -1,39 +0,0 @@ -/* QueueItem.cs $
-
- 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. */
-
-using System;
-using System.Diagnostics;
-
-namespace Handbrake.EncodeQueue
-{
- public class EncodeProcess
- {
- /// <summary>
- /// The CMD.exe process that runs HandBrakeCLI.exe
- /// </summary>
- public Process hbProcProcess { get; set; }
-
- /// <summary>
- /// Returns whether HandBrake is currently encoding or not.
- /// </summary>
- public Boolean isEncoding { get; set; }
-
- /// <summary>
- /// Returns the currently encoding query string
- /// </summary>
- public String currentQuery { get; set; }
-
- /// <summary>
- /// Get or set the process ID of HandBrakeCLI.exe
- /// </summary>
- public int processID { get; set; }
-
- /// <summary>
- /// Get or Set the Process Handle
- /// </summary>
- public int processHandle { get; set; }
- }
-}
\ No newline at end of file |