diff options
author | sr55 <[email protected]> | 2011-11-20 18:30:43 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-11-20 18:30:43 +0000 |
commit | c0c88720f5f59104770be38f0e84d7c2897ef465 (patch) | |
tree | b1a17f7d388203cf99f5eec0665c1806dd1b8221 /win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs | |
parent | 24cfd6cf3e18288052533ea385a6d0b648fac139 (diff) |
WinGui: (WPF) Add global exception handler and new wpf exception view.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4361 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs new file mode 100644 index 000000000..51a2b7a98 --- /dev/null +++ b/win/CS/HandBrakeWPF/ViewModels/Interfaces/IErrorViewModel.cs @@ -0,0 +1,18 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="IErrorViewModel.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 IErrorViewModel type.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.ViewModels.Interfaces
+{
+ /// <summary>
+ /// The Error View Model Interface
+ /// </summary>
+ public interface IErrorViewModel
+ {
+ }
+}
|