summaryrefslogtreecommitdiffstats
path: root/win/C#/CLI/Jobs/ParseDVD.cs
blob: a56a28d657825068e3e1f131a2a9e6677933fa17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Text;

namespace Handbrake.CLI.Jobs
{
    public class ParseDVD : Job
    {
        public override string ToString()
        {
            // TODO: generate param string to be used with hbcli
            return base.ToString();
        }
    }
}