diff options
author | sr55 <[email protected]> | 2013-02-02 15:12:19 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2013-02-02 15:12:19 +0000 |
commit | a7dfaa518ce3aaf73a64ecc3c61a88c9427aef81 (patch) | |
tree | 8efccea1be99fb4aca2fe1ad028c395095500675 /win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml.cs | |
parent | bc3b56381c6ac214b7736a00972c9d0902902453 (diff) |
Merging trunk to cl branch.
git-svn-id: svn://svn.handbrake.fr/HandBrake/branches/opencl@5234 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml.cs b/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml.cs new file mode 100644 index 000000000..553c7201f --- /dev/null +++ b/win/CS/HandBrakeWPF/Views/QueueSelectionView.xaml.cs @@ -0,0 +1,27 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="QueueSelectionView.xaml.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>
+// Interaction logic for QueueSelectionView.xaml
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Views
+{
+ using System.Windows;
+
+ /// <summary>
+ /// Interaction logic for QueueSelectionView.xaml
+ /// </summary>
+ public partial class QueueSelectionView : Window
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="QueueSelectionView"/> class.
+ /// </summary>
+ public QueueSelectionView()
+ {
+ InitializeComponent();
+ }
+ }
+}
|