Playing with more interfaces.

This commit is contained in:
soukoku
2014-09-18 06:46:01 -04:00
parent 11b6cb1040
commit 12859f42ac
11 changed files with 187 additions and 190 deletions

View File

@@ -9,7 +9,7 @@ namespace NTwain.Internals
/// <summary>
/// Extends <see cref="ITwainSession"/> with extra stuff for internal use.
/// </summary>
interface ITwainSessionInternal : ITwainSession
interface ITwainSessionInternal : ITwainSession, ITripletControl
{
/// <summary>
/// Gets the app id used for the session.
@@ -48,20 +48,5 @@ namespace NTwain.Internals
/// 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; }
/// <summary>
/// Gets the direct triplet operation entry for custom values.
/// </summary>
DGCustom DGCustom { get; }
}
}