From 844ca7d6a8c676059fc4058d714386d55d72e8f9 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Tue, 30 Apr 2019 23:33:16 +0100 Subject: [PATCH] Fix IWritableTapeImage inheritance chain. --- Interfaces/IWritableTapeImage.cs | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/Interfaces/IWritableTapeImage.cs b/Interfaces/IWritableTapeImage.cs index 4b31e57..743b316 100644 --- a/Interfaces/IWritableTapeImage.cs +++ b/Interfaces/IWritableTapeImage.cs @@ -36,21 +36,22 @@ // ---------------------------------------------------------------------------- // Copyright © 2011-2019 Natalia Portillo // ****************************************************************************/ + using DiscImageChef.CommonTypes.Structs; namespace DiscImageChef.CommonTypes.Interfaces { - public interface IWritableTapeImage : ITapeImage + public interface IWritableTapeImage : ITapeImage, IWritableImage { /// - /// Registers a new file in the image + /// Registers a new file in the image /// /// Tape file descriptor /// true if successful, false otherwise bool AddFile(TapeFile file); /// - /// Registers a new partition + /// Registers a new partition /// /// Tape partition descriptor /// true if successful, false otherwise