diff options
Diffstat (limited to 'win/C#/CLI/Manager.cs')
-rw-r--r-- | win/C#/CLI/Manager.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/win/C#/CLI/Manager.cs b/win/C#/CLI/Manager.cs new file mode 100644 index 000000000..ac20609a3 --- /dev/null +++ b/win/C#/CLI/Manager.cs @@ -0,0 +1,20 @@ +using System;
+using System.Collections.Generic;
+using System.Text;
+using System.Diagnostics;
+
+namespace Handbrake.CLI
+{
+ /// <summary>
+ /// still workin on this
+ /// </summary>
+ class Manager
+ {
+ private static Queue<Process> m_processQueue = new Queue<Process>();
+
+ public static void Enqueue(object s)
+ {
+ //TODO: create new Process object from passed
+ }
+ }
+}
|