diff options
author | sr55 <[email protected]> | 2011-10-28 20:39:16 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-10-28 20:39:16 +0000 |
commit | b1f4095b832276c031162d3f68ce8dfdeedc92ae (patch) | |
tree | f494d000088534d6c41ebe08307d5067529e8b56 /win/CS/HandBrakeWPF/Factories | |
parent | 4b58908059946ba68bff5432621269c51be3967f (diff) |
WinGui: (WPF) Options window bindings are now in place.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4326 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Factories')
-rw-r--r-- | win/CS/HandBrakeWPF/Factories/ViewModelFactory.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Factories/ViewModelFactory.cs b/win/CS/HandBrakeWPF/Factories/ViewModelFactory.cs new file mode 100644 index 000000000..e8e298546 --- /dev/null +++ b/win/CS/HandBrakeWPF/Factories/ViewModelFactory.cs @@ -0,0 +1,24 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="ViewModelFactory.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 View Model Factory
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Factories
+{
+ /// <summary>
+ /// The View Model Factory
+ /// </summary>
+ public class ViewModelFactory
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="ViewModelFactory"/> class.
+ /// </summary>
+ public ViewModelFactory()
+ {
+ }
+ }
+}
|