diff options
Diffstat (limited to 'win/CS/HandBrakeWPF/Isolation/Interfaces/IIsolatedEncodeService.cs')
-rw-r--r-- | win/CS/HandBrakeWPF/Isolation/Interfaces/IIsolatedEncodeService.cs | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/win/CS/HandBrakeWPF/Isolation/Interfaces/IIsolatedEncodeService.cs b/win/CS/HandBrakeWPF/Isolation/Interfaces/IIsolatedEncodeService.cs new file mode 100644 index 000000000..fb9912ccf --- /dev/null +++ b/win/CS/HandBrakeWPF/Isolation/Interfaces/IIsolatedEncodeService.cs @@ -0,0 +1,24 @@ +// --------------------------------------------------------------------------------------------------------------------
+// <copyright file="IIsolatedEncodeService.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>
+// The Isolated Encode Service interface.
+// </summary>
+// --------------------------------------------------------------------------------------------------------------------
+
+namespace HandBrakeWPF.Isolation.Interfaces
+{
+ using HandBrake.ApplicationServices.Services.Interfaces;
+
+ /// <summary>
+ /// The Isolated Encode Service interface.
+ /// </summary>
+ public interface IIsolatedEncodeService : IEncode
+ {
+ /// <summary>
+ /// The disconnect.
+ /// </summary>
+ void Disconnect();
+ }
+}
\ No newline at end of file |