diff --git a/Aaru.Filesystems/Register.cs b/Aaru.Filesystems/Register.cs index 916aa9bf3..e0a8ccc41 100644 --- a/Aaru.Filesystems/Register.cs +++ b/Aaru.Filesystems/Register.cs @@ -70,5 +70,7 @@ namespace Aaru.Filesystems public List GetAllWritableFloppyImagePlugins() => null; public List GetAllWritableImagePlugins() => null; + + public List GetAllArchivePlugins() => null; } -} \ No newline at end of file +} diff --git a/Aaru.Filters/Register.cs b/Aaru.Filters/Register.cs index 60b5efe6b..474c4c885 100644 --- a/Aaru.Filters/Register.cs +++ b/Aaru.Filters/Register.cs @@ -65,5 +65,7 @@ namespace Aaru.Filters public List GetAllWritableFloppyImagePlugins() => null; public List GetAllWritableImagePlugins() => null; + + public List GetAllArchivePlugins() => null; } -} \ No newline at end of file +} diff --git a/Aaru.Images/Register.cs b/Aaru.Images/Register.cs index 85cc1a824..67b63c88e 100644 --- a/Aaru.Images/Register.cs +++ b/Aaru.Images/Register.cs @@ -76,5 +76,7 @@ namespace Aaru.DiscImages Where(t => t.GetInterfaces(). Contains(typeof(IWritableImage))). Where(t => t.IsClass).ToList(); + + public List GetAllArchivePlugins() => null; } -} \ No newline at end of file +} diff --git a/Aaru.Partitions/Register.cs b/Aaru.Partitions/Register.cs index 5c57ab99e..183d8f30f 100644 --- a/Aaru.Partitions/Register.cs +++ b/Aaru.Partitions/Register.cs @@ -66,5 +66,7 @@ namespace Aaru.Partitions public List GetAllWritableFloppyImagePlugins() => null; public List GetAllWritableImagePlugins() => null; + + public List GetAllArchivePlugins() => null; } -} \ No newline at end of file +}