summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrakeWPF/Converters/Options/ProcessPriorityConverter.cs
diff options
context:
space:
mode:
Diffstat (limited to 'win/CS/HandBrakeWPF/Converters/Options/ProcessPriorityConverter.cs')
-rw-r--r--win/CS/HandBrakeWPF/Converters/Options/ProcessPriorityConverter.cs24
1 files changed, 24 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Converters/Options/ProcessPriorityConverter.cs b/win/CS/HandBrakeWPF/Converters/Options/ProcessPriorityConverter.cs
new file mode 100644
index 000000000..2ab2bac66
--- /dev/null
+++ b/win/CS/HandBrakeWPF/Converters/Options/ProcessPriorityConverter.cs
@@ -0,0 +1,24 @@
+// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="ProcessPriorityConverter.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>
+// Process Priority Converter
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Converters.Options
+{
+ using System;
+ using System.ComponentModel;
+ using System.Globalization;
+ using System.Linq;
+ using System.Windows.Data;
+
+ using HandBrakeWPF.Model.Options;
+ using HandBrakeWPF.Utilities;
+
+ public class ProcessPriorityConverter : ResourceConverterBase<ProcessPriority>, IValueConverter
+ {
+ }
+}