summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop.Test/EncodeJobsPersist.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop.Test/EncodeJobsPersist.cs')
-rw-r--r--win/CS/HandBrake.Interop/HandBrakeInterop.Test/EncodeJobsPersist.cs31
1 files changed, 0 insertions, 31 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop.Test/EncodeJobsPersist.cs b/win/CS/HandBrake.Interop/HandBrakeInterop.Test/EncodeJobsPersist.cs
deleted file mode 100644
index 37ca233c4..000000000
--- a/win/CS/HandBrake.Interop/HandBrakeInterop.Test/EncodeJobsPersist.cs
+++ /dev/null
@@ -1,31 +0,0 @@
-using System;
-using System.Collections.Generic;
-using System.IO;
-using System.Linq;
-using System.Text;
-using System.Xml;
-using System.Xml.Linq;
-using System.Xml.Serialization;
-using HandBrake.Interop;
-using HandBrake.Interop.Model;
-
-namespace HandBrakeInterop.Test
-{
- public static class EncodeJobsPersist
- {
- private static XmlSerializer xmlSerializer = new XmlSerializer(typeof(EncodeJob));
-
- public static EncodeJob GetJob(string jobName)
- {
- XDocument doc = XDocument.Load(jobName + ".xml");
- using (XmlReader reader = doc.CreateReader())
- {
- var job = xmlSerializer.Deserialize(reader) as EncodeJob;
-
-
-
- return job;
- }
- }
- }
-}