diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs new file mode 100644 index 000000000..b0159669f --- /dev/null +++ b/win/CS/HandBrakeWPF/ViewModels/LogViewModel.cs @@ -0,0 +1,30 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="LogViewModel.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 LogViewModel type.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.ViewModels
+{
+ using Caliburn.Micro;
+
+ /// <summary>
+ /// The Log View Model
+ /// </summary>
+ public class LogViewModel : ViewModelBase
+ {
+ /// <summary>
+ /// Initializes a new instance of the <see cref="LogViewModel"/> class.
+ /// </summary>
+ /// <param name="windowManager">
+ /// The window manager.
+ /// </param>
+ public LogViewModel(IWindowManager windowManager)
+ : base(windowManager)
+ {
+ }
+ }
+}
|