mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
More documentation inheritance.
This commit is contained in:
Submodule Aaru.Checksums updated: c1f291814c...dbf3a01f43
@@ -34,6 +34,7 @@ using System;
|
||||
|
||||
namespace Aaru.Database.Models
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// CD read offset
|
||||
/// </summary>
|
||||
|
||||
@@ -32,6 +32,7 @@
|
||||
|
||||
namespace Aaru.Database.Models
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Aaru version
|
||||
/// </summary>
|
||||
|
||||
@@ -39,6 +39,7 @@ using Schemas;
|
||||
namespace Aaru.Filesystems
|
||||
{
|
||||
// Information from Inside Macintosh Volume II
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements the Apple Macintosh File System
|
||||
/// </summary>
|
||||
|
||||
@@ -38,6 +38,7 @@ using SharpCompress.Compressors.BZip2;
|
||||
|
||||
namespace Aaru.Filters
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>Decompress bz2 files while reading</summary>
|
||||
public class BZip2 : IFilter
|
||||
{
|
||||
|
||||
@@ -38,6 +38,7 @@ using Aaru.Helpers;
|
||||
|
||||
namespace Aaru.Filters
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>Decompress gzip files while reading</summary>
|
||||
public sealed class GZip : IFilter
|
||||
{
|
||||
|
||||
@@ -38,6 +38,7 @@ using SharpCompress.Compressors.LZMA;
|
||||
|
||||
namespace Aaru.Filters
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>Decompress lzip files while reading</summary>
|
||||
public sealed class LZip : IFilter
|
||||
{
|
||||
|
||||
@@ -43,6 +43,7 @@ using Marshal = System.Runtime.InteropServices.Marshal;
|
||||
|
||||
namespace Aaru.Filters
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>Decodes PCExchange files</summary>
|
||||
[SuppressMessage("ReSharper", "UnusedMember.Local")]
|
||||
public sealed class PcExchange : IFilter
|
||||
|
||||
@@ -37,6 +37,7 @@ using SharpCompress.Compressors.Xz;
|
||||
|
||||
namespace Aaru.Filters
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>Decompress xz files while reading</summary>
|
||||
public sealed class XZ : IFilter
|
||||
{
|
||||
|
||||
@@ -36,6 +36,7 @@ using Aaru.CommonTypes.Interfaces;
|
||||
|
||||
namespace Aaru.Filters
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>No filter for reading files not recognized by any filter</summary>
|
||||
public sealed class ZZZNoFilter : IFilter
|
||||
{
|
||||
|
||||
@@ -38,6 +38,7 @@ using Aaru.CommonTypes.Structs;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading and writing interleaved Apple DOS disk images
|
||||
/// </summary>
|
||||
|
||||
@@ -38,7 +38,6 @@ using Aaru.CommonTypes.Structs;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading Basic Lisa Utility disk images
|
||||
/// </summary>
|
||||
|
||||
@@ -41,6 +41,7 @@ namespace Aaru.DiscImages
|
||||
{
|
||||
// TODO: Doesn't support compositing from several files
|
||||
// TODO: Doesn't support silences that are not in files
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading and writing cdrdao cuesheet disc images
|
||||
/// </summary>
|
||||
|
||||
@@ -53,6 +53,7 @@ namespace Aaru.DiscImages
|
||||
* 2) High compression, algorithm unknown
|
||||
* Then the data for whole tracks follow.
|
||||
*/
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading and writing CisCopy disk images
|
||||
/// </summary>
|
||||
|
||||
@@ -38,7 +38,6 @@ using Aaru.CommonTypes.Structs;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading CopyQM disk images
|
||||
/// </summary>
|
||||
|
||||
@@ -6,6 +6,7 @@ using Aaru.CommonTypes.Structs;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading and writing copytape tape images
|
||||
/// </summary>
|
||||
|
||||
@@ -41,6 +41,7 @@ namespace Aaru.DiscImages
|
||||
{
|
||||
// Support separate data files? Never seen a DiscJuggler image using them anyways...
|
||||
// TODO: Too many unknowns to make this writable
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading DiscJuggler disc images
|
||||
/// </summary>
|
||||
|
||||
@@ -30,6 +30,7 @@
|
||||
// Copyright © 2011-2021 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
// ReSharper disable InconsistentNaming
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
public sealed partial class DiskCopy42
|
||||
|
||||
@@ -41,6 +41,7 @@ namespace Aaru.DiscImages
|
||||
{
|
||||
// TODO: There seems no be no clear definition on how to treat pregaps that are not included in the file, so this is just appending it to start of track
|
||||
// TODO: This format doesn't support to specify pregaps that are included in the file (like Redump ones)
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading Dreamcast GDI disc images
|
||||
/// </summary>
|
||||
|
||||
@@ -39,7 +39,6 @@ using Aaru.CommonTypes.Structs;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading partclone disk images
|
||||
/// </summary>
|
||||
|
||||
@@ -41,7 +41,6 @@ using Aaru.CommonTypes.Structs;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading partimage disk images
|
||||
/// </summary>
|
||||
|
||||
@@ -38,6 +38,7 @@ namespace Aaru.DiscImages
|
||||
{
|
||||
public sealed partial class Vhd
|
||||
{
|
||||
/// <inheritdoc />
|
||||
public bool Identify(IFilter imageFilter)
|
||||
{
|
||||
Stream imageStream = imageFilter.GetDataForkStream();
|
||||
|
||||
@@ -39,6 +39,7 @@ using Aaru.CommonTypes.Structs;
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
// Info from Neko Project II emulator
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading Virtual98 disk images
|
||||
/// </summary>
|
||||
|
||||
@@ -39,6 +39,7 @@ using Aaru.CommonTypes.Structs;
|
||||
|
||||
namespace Aaru.DiscImages
|
||||
{
|
||||
/// <inheritdoc />
|
||||
/// <summary>
|
||||
/// Implements reading and writing raw (sector by sector) images
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user