summaryrefslogtreecommitdiffstats
path: root/win/C#/CLI/Jobs/Encode.cs
blob: e09673856d8027cd2386555ff02e3d61368c9896 (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 Encode
    {
        public override string ToString()
        {
            // TODO: generate param string to be used with hbcli
            return base.ToString();
        }
    }
}