diff options
Diffstat (limited to 'win/C#/HandBrake.ApplicationServices/Services/Interfaces/IErrorService.cs')
-rw-r--r-- | win/C#/HandBrake.ApplicationServices/Services/Interfaces/IErrorService.cs | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/win/C#/HandBrake.ApplicationServices/Services/Interfaces/IErrorService.cs b/win/C#/HandBrake.ApplicationServices/Services/Interfaces/IErrorService.cs deleted file mode 100644 index 2c61f0ff4..000000000 --- a/win/C#/HandBrake.ApplicationServices/Services/Interfaces/IErrorService.cs +++ /dev/null @@ -1,35 +0,0 @@ -/* IErrorService.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 HandBrake.ApplicationServices.Services.Interfaces
-{
- /// <summary>
- /// The Error service for showing the exception window.
- /// </summary>
- public interface IErrorService
- {
- /// <summary>
- /// Show an Error Window
- /// </summary>
- /// <param name="shortError">
- /// The short error message for the user to read
- /// </param>
- /// <param name="longError">
- /// Exception string or advanced details
- /// </param>
- void ShowError(string shortError, string longError);
-
- /// <summary>
- /// Show a Notice or Warning Message.
- /// </summary>
- /// <param name="notice">
- /// The text to display to the user
- /// </param>
- /// <param name="isWarning">
- /// Is a warning window, show the warning icon instead of the notice
- /// </param>
- void ShowNotice(string notice, bool isWarning);
- }
-}
\ No newline at end of file |