diff --git a/Aaru.Archives/Symbian/Open.cs b/Aaru.Archives/Symbian/Open.cs new file mode 100644 index 000000000..a6cfa2384 --- /dev/null +++ b/Aaru.Archives/Symbian/Open.cs @@ -0,0 +1,43 @@ +// /*************************************************************************** +// Aaru Data Preservation Suite +// ---------------------------------------------------------------------------- +// +// Filename : Symbian.cs +// Author(s) : Natalia Portillo +// +// Component : Symbian plugin. +// +// --[ Description ] ---------------------------------------------------------- +// +// Identifies Symbian installer (.sis) packages and shows information. +// +// --[ License ] -------------------------------------------------------------- +// +// This library is free software; you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as +// published by the Free Software Foundation; either version 2.1 of the +// License, or (at your option) any later version. +// +// This library is distributed in the hope that it will be useful, but +// WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +// Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public +// License along with this library; if not, see . +// +// ---------------------------------------------------------------------------- +// Copyright © 2011-2023 Natalia Portillo +// ****************************************************************************/ + +namespace Aaru.Archives; + +public sealed partial class Symbian +{ +#region IArchive Members + + /// + public bool IsOpened() => _opened; + +#endregion +} \ No newline at end of file diff --git a/Aaru.Archives/Symbian/Symbian.cs b/Aaru.Archives/Symbian/Symbian.cs index f72330428..ad78c6174 100644 --- a/Aaru.Archives/Symbian/Symbian.cs +++ b/Aaru.Archives/Symbian/Symbian.cs @@ -43,8 +43,8 @@ public sealed partial class Symbian : IArchive const string MODULE_NAME = "Symbian Installation File Plugin"; Encoding _encoding; List _files; - - bool _release6; + bool _opened; + bool _release6; #region IArchive Members diff --git a/Aaru.Archives/Symbian/Unsupported.cs b/Aaru.Archives/Symbian/Unsupported.cs index 397303258..55be6f885 100644 --- a/Aaru.Archives/Symbian/Unsupported.cs +++ b/Aaru.Archives/Symbian/Unsupported.cs @@ -48,9 +48,6 @@ public sealed partial class Symbian /// public ErrorNumber Open(IFilter filter) => throw new NotImplementedException(); - /// - public bool IsOpened() => throw new NotImplementedException(); - /// public void Close() {