mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Fix IWritableTapeImage inheritance chain.
This commit is contained in:
@@ -36,21 +36,22 @@
|
|||||||
// ----------------------------------------------------------------------------
|
// ----------------------------------------------------------------------------
|
||||||
// Copyright © 2011-2019 Natalia Portillo
|
// Copyright © 2011-2019 Natalia Portillo
|
||||||
// ****************************************************************************/
|
// ****************************************************************************/
|
||||||
|
|
||||||
using DiscImageChef.CommonTypes.Structs;
|
using DiscImageChef.CommonTypes.Structs;
|
||||||
|
|
||||||
namespace DiscImageChef.CommonTypes.Interfaces
|
namespace DiscImageChef.CommonTypes.Interfaces
|
||||||
{
|
{
|
||||||
public interface IWritableTapeImage : ITapeImage
|
public interface IWritableTapeImage : ITapeImage, IWritableImage
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Registers a new file in the image
|
/// Registers a new file in the image
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="file">Tape file descriptor</param>
|
/// <param name="file">Tape file descriptor</param>
|
||||||
/// <returns><c>true</c> if successful, <c>false</c> otherwise</returns>
|
/// <returns><c>true</c> if successful, <c>false</c> otherwise</returns>
|
||||||
bool AddFile(TapeFile file);
|
bool AddFile(TapeFile file);
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Registers a new partition
|
/// Registers a new partition
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <param name="partition">Tape partition descriptor</param>
|
/// <param name="partition">Tape partition descriptor</param>
|
||||||
/// <returns><c>true</c> if successful, <c>false</c> otherwise</returns>
|
/// <returns><c>true</c> if successful, <c>false</c> otherwise</returns>
|
||||||
|
|||||||
Reference in New Issue
Block a user