diff options
author | sr55 <[email protected]> | 2011-12-30 22:21:44 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-12-30 22:21:44 +0000 |
commit | aad50499b32c44d28a6bae7f353b579e24564e25 (patch) | |
tree | 7e5f309e184d9d65785de1a00d4b94735a65b7cf /win/CS/HandBrakeWPF/Services/Interfaces | |
parent | cd3e951792f05944fb9ba4f1bc17e581318bfe8f (diff) |
WinGui: (WPF) Bug fixes, Initial work on the Filters View
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4394 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Services/Interfaces')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Interfaces/IJobContextService.cs | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Interfaces/IJobContextService.cs b/win/CS/HandBrakeWPF/Services/Interfaces/IJobContextService.cs new file mode 100644 index 000000000..d1301026b --- /dev/null +++ b/win/CS/HandBrakeWPF/Services/Interfaces/IJobContextService.cs @@ -0,0 +1,30 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="IJobContextService.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 IJobContextService type.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Services.Interfaces
+{
+ using HandBrake.ApplicationServices.Model;
+ using HandBrake.ApplicationServices.Parsing;
+
+ /// <summary>
+ /// A Context service for the current Job Information
+ /// </summary>
+ public interface IJobContextService
+ {
+ /// <summary>
+ /// Gets or sets CurrentTask.
+ /// </summary>
+ EncodeTask CurrentTask { get; set; }
+
+ /// <summary>
+ /// Gets or sets CurrentSource.
+ /// </summary>
+ Source CurrentSource { get; set; }
+ }
+}
\ No newline at end of file |