naps2/NAPS2.Sdk/WinForms/StubDialogHelper.cs
Ben Olden-Cooligan b62100fb07 Remove unused usings
No longer keeping System, System.Collections.Generic, System.Linq
2019-07-14 11:26:56 -04:00

23 lines
586 B
C#

namespace NAPS2.WinForms
{
public class StubDialogHelper : DialogHelper
{
public override bool PromptToSavePdfOrImage(string defaultPath, out string savePath)
{
savePath = null;
return false;
}
public override bool PromptToSavePdf(string defaultPath, out string savePath)
{
savePath = null;
return false;
}
public override bool PromptToSaveImage(string defaultPath, out string savePath)
{
savePath = null;
return false;
}
}
}