mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Add required method due to the change in Aaru.CommonTypes
This commit is contained in:
@@ -70,5 +70,7 @@ namespace Aaru.Filesystems
|
|||||||
public List<Type> GetAllWritableFloppyImagePlugins() => null;
|
public List<Type> GetAllWritableFloppyImagePlugins() => null;
|
||||||
|
|
||||||
public List<Type> GetAllWritableImagePlugins() => null;
|
public List<Type> GetAllWritableImagePlugins() => null;
|
||||||
|
|
||||||
|
public List<Type> GetAllArchivePlugins() => null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -65,5 +65,7 @@ namespace Aaru.Filters
|
|||||||
public List<Type> GetAllWritableFloppyImagePlugins() => null;
|
public List<Type> GetAllWritableFloppyImagePlugins() => null;
|
||||||
|
|
||||||
public List<Type> GetAllWritableImagePlugins() => null;
|
public List<Type> GetAllWritableImagePlugins() => null;
|
||||||
|
|
||||||
|
public List<Type> GetAllArchivePlugins() => null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -76,5 +76,7 @@ namespace Aaru.DiscImages
|
|||||||
Where(t => t.GetInterfaces().
|
Where(t => t.GetInterfaces().
|
||||||
Contains(typeof(IWritableImage))).
|
Contains(typeof(IWritableImage))).
|
||||||
Where(t => t.IsClass).ToList();
|
Where(t => t.IsClass).ToList();
|
||||||
|
|
||||||
|
public List<Type> GetAllArchivePlugins() => null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -66,5 +66,7 @@ namespace Aaru.Partitions
|
|||||||
public List<Type> GetAllWritableFloppyImagePlugins() => null;
|
public List<Type> GetAllWritableFloppyImagePlugins() => null;
|
||||||
|
|
||||||
public List<Type> GetAllWritableImagePlugins() => null;
|
public List<Type> GetAllWritableImagePlugins() => null;
|
||||||
|
|
||||||
|
public List<Type> GetAllArchivePlugins() => null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user