summaryrefslogtreecommitdiffstats
path: root/win/C#/CLI/Jobs
diff options
context:
space:
mode:
Diffstat (limited to 'win/C#/CLI/Jobs')
-rw-r--r--win/C#/CLI/Jobs/Encode.cs15
-rw-r--r--win/C#/CLI/Jobs/Job.cs14
-rw-r--r--win/C#/CLI/Jobs/ParseDVD.cs15
3 files changed, 0 insertions, 44 deletions
diff --git a/win/C#/CLI/Jobs/Encode.cs b/win/C#/CLI/Jobs/Encode.cs
deleted file mode 100644
index ed537b515..000000000
--- a/win/C#/CLI/Jobs/Encode.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-
-namespace Handbrake.CLI.Jobs
-{
- public class Encode : Job
- {
- public override string ToString()
- {
- // TODO: generate param string to be used with hbcli
- return base.ToString();
- }
- }
-}
diff --git a/win/C#/CLI/Jobs/Job.cs b/win/C#/CLI/Jobs/Job.cs
deleted file mode 100644
index 454bb21c6..000000000
--- a/win/C#/CLI/Jobs/Job.cs
+++ /dev/null
@@ -1,14 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.Text;
-using System.Diagnostics;
-
-namespace Handbrake.CLI.Jobs
-{
- public class Job
- {
- public Job()
- {
- }
- }
-}
diff --git a/win/C#/CLI/Jobs/ParseDVD.cs b/win/C#/CLI/Jobs/ParseDVD.cs
deleted file mode 100644
index a56a28d65..000000000
--- a/win/C#/CLI/Jobs/ParseDVD.cs
+++ /dev/null
@@ -1,15 +0,0 @@
-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();
- }
- }
-}