Files
ntwain/NTwain/ITwainOperation.cs

31 lines
750 B
C#
Raw Normal View History

2014-04-05 16:48:44 -04:00
using NTwain.Data;
using NTwain.Triplets;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
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; }
}
}