From 109d36561f9c976649e2cd0f685567466eb93c41 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Fri, 6 Oct 2023 14:05:53 +0100 Subject: [PATCH] [IArchive] Define `GetInformation`. --- Interfaces/IArchive.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Interfaces/IArchive.cs b/Interfaces/IArchive.cs index affc462a7..de865435f 100644 --- a/Interfaces/IArchive.cs +++ b/Interfaces/IArchive.cs @@ -36,6 +36,7 @@ using System; using System.Collections.Generic; using System.IO; +using System.Text; using Aaru.CommonTypes.Enums; namespace Aaru.CommonTypes.Interfaces; @@ -187,4 +188,6 @@ public interface IArchive /// The entry for which the Filter should be returned. /// The Filter for the given entry. IFilter GetEntry(int entryNumber); + + void GetInformation(IFilter filter, Encoding encoding, out string information); } \ No newline at end of file