[HA] Implement Stat.

This commit is contained in:
2025-09-08 01:54:06 +01:00
parent 22deadb7d0
commit db63df5de9
3 changed files with 52 additions and 9 deletions

View File

@@ -1,7 +1,6 @@
using System;
using Aaru.CommonTypes.Enums;
using Aaru.CommonTypes.Interfaces;
using Aaru.CommonTypes.Structs;
namespace Aaru.Archives;
@@ -9,10 +8,6 @@ public sealed partial class Ha
{
#region IArchive Members
/// <inheritdoc />
/// <inheritdoc />
public ErrorNumber Stat(int entryNumber, out FileEntryInfo stat) => throw new NotImplementedException();
/// <inheritdoc />
public ErrorNumber GetEntry(int entryNumber, out IFilter filter) => throw new NotImplementedException();