mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-13 06:27:11 +03:00
15 lines
370 B
C#
15 lines
370 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading;
|
|
using NAPS2.Scan.Images;
|
|
using NAPS2.Util;
|
|
|
|
namespace NAPS2.ImportExport
|
|
{
|
|
public interface IScannedImageImporter
|
|
{
|
|
ScannedImageSource Import(string filePath, ImportParams importParams, ProgressHandler progressCallback, CancellationToken cancelToken);
|
|
}
|
|
}
|