mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
39 lines
1.3 KiB
C#
39 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using DiscImageChef.CommonTypes.Enums;
|
|
using DiscImageChef.CommonTypes.Interfaces;
|
|
using DiscImageChef.CommonTypes.Structs;
|
|
|
|
namespace DiscImageChef.DiscImages.CopyTape
|
|
{
|
|
public partial class CopyTape : IWritableTapeImage
|
|
{
|
|
long[] blockPositionCache;
|
|
ImageInfo imageInfo;
|
|
Stream imageStream;
|
|
|
|
public CopyTape()
|
|
{
|
|
imageInfo = new ImageInfo
|
|
{
|
|
ReadableSectorTags = new List<SectorTagType>(),
|
|
ReadableMediaTags = new List<MediaTagType>(),
|
|
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
|
|
};
|
|
}
|
|
}
|
|
} |