From aad50499b32c44d28a6bae7f353b579e24564e25 Mon Sep 17 00:00:00 2001 From: sr55 Date: Fri, 30 Dec 2011 22:21:44 +0000 Subject: 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 --- .../Services/Interfaces/IJobContextService.cs | 30 ++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 win/CS/HandBrakeWPF/Services/Interfaces/IJobContextService.cs (limited to 'win/CS/HandBrakeWPF/Services/Interfaces') 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 @@ +// -------------------------------------------------------------------------------------------------------------------- +// +// This file is part of the HandBrake source code - It may be used under the terms of the GNU General Public License. +// +// +// Defines the IJobContextService type. +// +// -------------------------------------------------------------------------------------------------------------------- + +namespace HandBrakeWPF.Services.Interfaces +{ + using HandBrake.ApplicationServices.Model; + using HandBrake.ApplicationServices.Parsing; + + /// + /// A Context service for the current Job Information + /// + public interface IJobContextService + { + /// + /// Gets or sets CurrentTask. + /// + EncodeTask CurrentTask { get; set; } + + /// + /// Gets or sets CurrentSource. + /// + Source CurrentSource { get; set; } + } +} \ No newline at end of file -- cgit v1.2.3