diff options
author | sr55 <[email protected]> | 2012-07-08 15:57:58 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2012-07-08 15:57:58 +0000 |
commit | aea2c5f0a32428671182a5e9d680ab4c016fce2c (patch) | |
tree | 39ae475bc274cb2ecf5099c6ddb98bc44e7d0e66 /win/CS/HandBrakeWPF/Services | |
parent | da44aa82136fb9423f041b200b3e40632b8287e7 (diff) |
WinGui: Initial work to restore queue editing functionality. (Note, it's not complete yet)
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4821 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrakeWPF/Services')
-rw-r--r-- | win/CS/HandBrakeWPF/Services/Interfaces/IJobContextService.cs | 30 | ||||
-rw-r--r-- | win/CS/HandBrakeWPF/Services/JobContextService.cs | 32 |
2 files changed, 0 insertions, 62 deletions
diff --git a/win/CS/HandBrakeWPF/Services/Interfaces/IJobContextService.cs b/win/CS/HandBrakeWPF/Services/Interfaces/IJobContextService.cs deleted file mode 100644 index d1301026b..000000000 --- a/win/CS/HandBrakeWPF/Services/Interfaces/IJobContextService.cs +++ /dev/null @@ -1,30 +0,0 @@ -// --------------------------------------------------------------------------------------------------------------------
-// <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 diff --git a/win/CS/HandBrakeWPF/Services/JobContextService.cs b/win/CS/HandBrakeWPF/Services/JobContextService.cs deleted file mode 100644 index b5f3060a5..000000000 --- a/win/CS/HandBrakeWPF/Services/JobContextService.cs +++ /dev/null @@ -1,32 +0,0 @@ -// --------------------------------------------------------------------------------------------------------------------
-// <copyright file="JobContextService.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 JobContextService type.
-// </summary>
-// --------------------------------------------------------------------------------------------------------------------
-
-namespace HandBrakeWPF.Services
-{
- using HandBrake.ApplicationServices.Model;
- using HandBrake.ApplicationServices.Parsing;
-
- using HandBrakeWPF.Services.Interfaces;
-
- /// <summary>
- /// A Context service for the current Job Information.
- /// </summary>
- public class JobContextService : IJobContextService
- {
- /// <summary>
- /// Gets or sets CurrentTask.
- /// </summary>
- public EncodeTask CurrentTask { get; set; }
-
- /// <summary>
- /// Gets or sets CurrentSource.
- /// </summary>
- public Source CurrentSource { get; set; }
- }
-}
|