blob: 6b8e4d9394029ddcd1c9b8fbe093ee9a99ab9435 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* OptionsViewModel.cs $
This file is part of the HandBrake source code.
Homepage: <http://handbrake.fr>.
It may be used under the terms of the GNU General Public License. */
namespace HandBrakeWPF.ViewModels
{
using System.ComponentModel.Composition;
using Caliburn.Micro;
using HandBrakeWPF.ViewModels.Interfaces;
/// <summary>
/// The Options View Model
/// </summary>
[Export(typeof(IOptionsViewModel))]
public class OptionsViewModel : ViewModelBase, IOptionsViewModel
{
/// <summary>
/// Initializes a new instance of the <see cref="OptionsViewModel"/> class.
/// </summary>
/// <param name="windowManager">
/// The window manager.
/// </param>
public OptionsViewModel(IWindowManager windowManager) : base(windowManager)
{
}
/// <summary>
/// Close this window.
/// </summary>
public void Close()
{
}
}
}
|