summaryrefslogtreecommitdiffstats
path: root/win/C#/CLI/Manager.cs
blob: ac20609a36afb1170e7decfd7c2e577dcea6fec8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 
        }
    }
}