diff --git a/Register.cs b/Register.cs index c56e12a..76da425 100644 --- a/Register.cs +++ b/Register.cs @@ -42,41 +42,43 @@ using System.Linq; using System.Reflection; using Aaru.CommonTypes.Interfaces; -namespace Aaru.Checksums +namespace Aaru.Checksums; + +/// +public sealed class Register : IPluginRegister { /// - public sealed class Register : IPluginRegister - { - /// - public List GetAllChecksumPlugins() => Assembly.GetExecutingAssembly().GetTypes(). - Where(t => t.GetInterfaces().Contains(typeof(IChecksum))). - Where(t => t.IsClass).ToList(); + public List GetAllChecksumPlugins() => Assembly.GetExecutingAssembly().GetTypes(). + Where(t => t.GetInterfaces().Contains(typeof(IChecksum))). + Where(t => t.IsClass).ToList(); - /// - public List GetAllFilesystemPlugins() => null; + /// + public List GetAllFilesystemPlugins() => null; - /// - public List GetAllFilterPlugins() => null; + /// + public List GetAllFilterPlugins() => null; - /// - public List GetAllFloppyImagePlugins() => null; + /// + public List GetAllFloppyImagePlugins() => null; - /// - public List GetAllMediaImagePlugins() => null; + /// + public List GetAllMediaImagePlugins() => null; - /// - public List GetAllPartitionPlugins() => null; + /// + public List GetAllPartitionPlugins() => null; - /// - public List GetAllReadOnlyFilesystemPlugins() => null; + /// + public List GetAllReadOnlyFilesystemPlugins() => null; - /// - public List GetAllWritableFloppyImagePlugins() => null; + /// + public List GetAllWritableFloppyImagePlugins() => null; - /// - public List GetAllWritableImagePlugins() => null; + /// + public List GetAllWritableImagePlugins() => null; - /// - public List GetAllArchivePlugins() => null; - } + /// + public List GetAllArchivePlugins() => null; + + /// + public List GetAllByteAddressablePlugins() => null; } \ No newline at end of file