From 32aa86646ff2cb02b69dede45bfdfd3930b5144f Mon Sep 17 00:00:00 2001 From: Darkstar Date: Fri, 5 Mar 2021 13:50:06 +0100 Subject: [PATCH] Add required method due to the change in Aaru.CommonTypes --- Aaru.Filesystems/Register.cs | 4 +++- Aaru.Filters/Register.cs | 4 +++- Aaru.Images/Register.cs | 4 +++- Aaru.Partitions/Register.cs | 4 +++- 4 files changed, 12 insertions(+), 4 deletions(-) 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 +}