2014-04-18 07:11:11 +08:00
|
|
|
|
using NTwain.Triplets;
|
2014-04-06 04:48:44 +08:00
|
|
|
|
|
|
|
|
|
namespace NTwain
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Interface for providing TWAIN triplet operations.
|
|
|
|
|
/// </summary>
|
|
|
|
|
public interface ITwainOperation
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the triplet operations defined for audio data group.
|
|
|
|
|
/// </summary>
|
|
|
|
|
DGAudio DGAudio { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the triplet operations defined for control data group.
|
|
|
|
|
/// </summary>
|
|
|
|
|
DGControl DGControl { get; }
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the triplet operations defined for image data group.
|
|
|
|
|
/// </summary>
|
|
|
|
|
DGImage DGImage { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|