diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces/IShellViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IShellViewModel.cs | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IShellViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IShellViewModel.cs new file mode 100644 index 000000000..4964e8b40 --- /dev/null +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IShellViewModel.cs @@ -0,0 +1,27 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="IShellViewModel.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 Interface for the Shell View Model
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.ViewModels.Interfaces
+{
+ using HandBrakeWPF.Model;
+
+ /// <summary>
+ /// The Interface for the Shell View Model
+ /// </summary>
+ public interface IShellViewModel
+ {
+ /// <summary>
+ /// Change the page displayed on this window.
+ /// </summary>
+ /// <param name="window">
+ /// The window.
+ /// </param>
+ void DisplayWindow(ShellWindow window);
+ }
+}
|