summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Model/ShellWindow.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/Model/ShellWindow.cs')
-rw-r--r--win/CS/HandBrakeWPF/Model/ShellWindow.cs20
1 files changed, 20 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Model/ShellWindow.cs b/win/CS/HandBrakeWPF/Model/ShellWindow.cs
new file mode 100644
index 000000000..05ca1995e
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Model/ShellWindow.cs
@@ -0,0 +1,20 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="ShellWindow.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>
+// The Window that the shell view can display
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Model
+{
+ /// <summary>
+ /// The Window that the shell view can display
+ /// </summary>
+ public enum ShellWindow
+ {
+ MainWindow,
+ OptionsWindow
+ }
+}