Move optical disc exclusive methods to new interfaces.

This commit is contained in:
2019-01-20 20:11:10 +00:00
parent 287d761dff
commit 640c57b87a
144 changed files with 869 additions and 2708 deletions

View File

@@ -33,8 +33,6 @@
using System;
using System.Collections.Generic;
using DiscImageChef.CommonTypes;
using DiscImageChef.CommonTypes.Exceptions;
using DiscImageChef.CommonTypes.Structs;
using Schemas;
@@ -44,19 +42,10 @@ namespace DiscImageChef.DiscImages
{
public ImageInfo Info => imageInfo;
public string Name => "d2f disk image";
public Guid Id => new Guid("DDE01493-BCA2-41C2-A269-7E56D3716D2F");
public string Author => "Michael Drüing";
public string Format => "d2f disk image";
public List<Partition> Partitions =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public List<Track> Tracks =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public List<Session> Sessions =>
throw new FeatureUnsupportedImageException("Feature not supported by image format");
public string Name => "d2f disk image";
public Guid Id => new Guid("DDE01493-BCA2-41C2-A269-7E56D3716D2F");
public string Author => "Michael Drüing";
public string Format => "d2f disk image";
public List<DumpHardwareType> DumpHardware => null;
public CICMMetadataType CicmMetadata => null;
}