diff options
author | sr55 <[email protected]> | 2011-12-20 20:42:07 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2011-12-20 20:42:07 +0000 |
commit | 4d0e5554c2e8d0a9fced4c1e3e1662aa677ff748 (patch) | |
tree | 140caef970e82488612ad31507588f7c65167dcb /win/CS/HandBrake.ApplicationServices/Services/LibScan.cs | |
parent | 7ebaeeb31c1eba5f86a79d9ae9946822e50232a9 (diff) |
WinGui: Some Audio Panel refactoring and an additional method to the scan service to allow scan logs to be more easily debugged.
git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4377 b64f7644-9d1e-0410-96f1-a4d463321fa5
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Services/LibScan.cs')
-rw-r--r-- | win/CS/HandBrake.ApplicationServices/Services/LibScan.cs | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs b/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs index 033f16018..2a5726ef0 100644 --- a/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs +++ b/win/CS/HandBrake.ApplicationServices/Services/LibScan.cs @@ -151,6 +151,20 @@ namespace HandBrake.ApplicationServices.Services instance.StopScan();
}
+ /// <summary>
+ /// Debug a Scan Log (Only Available for CLI Mode, not LIBHB)
+ /// </summary>
+ /// <param name="path">
+ /// The path.
+ /// </param>
+ /// <exception cref="NotImplementedException">
+ /// (Only Available for CLI Mode, not LIBHB)
+ /// </exception>
+ public void DebugScanLog(string path)
+ {
+ throw new NotImplementedException("Only Available when using the CLI mode. Not LibHB");
+ }
+
#endregion
#region Private Methods
|