Files
Aaru/DiscImageChef.DiscImages/CopyTape/CopyTape.cs

39 lines
1.3 KiB
C#
Raw Normal View History

2019-05-06 18:37:29 +01:00
using System.Collections.Generic;
2019-05-06 20:21:57 +01:00
using System.IO;
2019-05-06 18:37:29 +01:00
using DiscImageChef.CommonTypes.Enums;
using DiscImageChef.CommonTypes.Interfaces;
using DiscImageChef.CommonTypes.Structs;
namespace DiscImageChef.DiscImages.CopyTape
{
2019-05-06 22:42:13 +01:00
public partial class CopyTape : IWritableTapeImage
2019-05-06 18:37:29 +01:00
{
2019-05-06 20:21:57 +01:00
long[] blockPositionCache;
ImageInfo imageInfo;
Stream imageStream;
2019-05-06 18:37:29 +01:00
public CopyTape()
{
2019-05-06 20:21:57 +01:00
imageInfo = new ImageInfo
2019-05-06 18:37:29 +01:00
{
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
};
}
}
}