Files
Aaru/Aaru.Images/CopyTape/CopyTape.cs

35 lines
1.0 KiB
C#

using System.IO;
using Aaru.CommonTypes.Interfaces;
using Aaru.CommonTypes.Structs;
namespace Aaru.Images;
/// <inheritdoc />
/// <summary>Implements reading and writing copytape tape images</summary>
public sealed partial class CopyTape : IWritableTapeImage
{
long[] _blockPositionCache;
ImageInfo _imageInfo;
Stream _imageStream;
public CopyTape() => _imageInfo = new ImageInfo
{
ReadableSectorTags = [],
ReadableMediaTags = [],
HasPartitions = true,
HasSessions = true,
Version = null,
ApplicationVersion = null,
MediaTitle = null,
Creator = null,
MediaManufacturer = null,
MediaModel = null,
MediaPartNumber = null,
MediaSequence = 0,
LastMediaSequence = 0,
DriveManufacturer = null,
DriveModel = null,
DriveSerialNumber = null,
DriveFirmwareRevision = null
};
}