diff options
Diffstat (limited to 'win/C#/CLI/Jobs/Job.cs')
-rw-r--r-- | win/C#/CLI/Jobs/Job.cs | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/win/C#/CLI/Jobs/Job.cs b/win/C#/CLI/Jobs/Job.cs new file mode 100644 index 000000000..f1c02c352 --- /dev/null +++ b/win/C#/CLI/Jobs/Job.cs @@ -0,0 +1,28 @@ +using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Diagnostics;
+
+namespace Handbrake.CLI.Jobs
+{
+ public class Job
+ {
+ private string m_exec;
+
+ private Process m_proc;
+ /// <summary>
+ /// The base process associated with this job
+ /// </summary>
+ public Process Process
+ {
+ get
+ {
+ return this.m_proc;
+ }
+ }
+
+ public Job()
+ {
+ }
+ }
+}
|