summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/SubtitleSource.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2014-12-20 13:20:27 +0000
committersr55 <[email protected]>2014-12-20 13:20:27 +0000
commit541c3053f07d7cf9b90f168ee27fa121082d677b (patch)
treec429ab6b19ba9789c695acaeeef2b994673da0ec /win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/SubtitleSource.cs
parent494eb256cb625a1620786f32d0e41c904ecf0cbf (diff)
WinGui: Refactor the scan model namespace in preparation for json api impl
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@6621 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/SubtitleSource.cs')
-rw-r--r--win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/SubtitleSource.cs26
1 files changed, 26 insertions, 0 deletions
diff --git a/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/SubtitleSource.cs b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/SubtitleSource.cs
new file mode 100644
index 000000000..517025934
--- /dev/null
+++ b/win/CS/HandBrake.Interop/HandBrakeInterop/Model/Scan/SubtitleSource.cs
@@ -0,0 +1,26 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="SubtitleSource.cs" company="HandBrake Project (http://handbrake.fr)">
+// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License.
+// </copyright>
+// <summary>
+// Defines the SubtitleSource type.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrake.Interop.Model.Scan
+{
+ /// <summary>
+ /// The subtitle source.
+ /// </summary>
+ public enum SubtitleSource
+ {
+ VobSub,
+ SRT,
+ CC608,
+ CC708,
+ UTF8,
+ TX3G,
+ SSA,
+ PGS
+ }
+}