mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Image classes should be public.
This commit is contained in:
@@ -43,7 +43,7 @@ using DiscImageChef.Filters;
|
||||
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
class BlindWrite4 : ImagePlugin
|
||||
public class BlindWrite4 : ImagePlugin
|
||||
{
|
||||
#region Internal Constants
|
||||
/// <summary>"BLINDWRITE TOC FILE"</summary>
|
||||
|
||||
@@ -43,7 +43,7 @@ namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
// TODO: Doesn't support compositing from several files
|
||||
// TODO: Doesn't support silences that are not in files
|
||||
class CDRDAO : ImagePlugin
|
||||
public class CDRDAO : ImagePlugin
|
||||
{
|
||||
#region Internal structures
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ using DiscImageChef.Filters;
|
||||
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
class CDRWin : ImagePlugin
|
||||
public class CDRWin : ImagePlugin
|
||||
{
|
||||
#region Internal structures
|
||||
|
||||
|
||||
@@ -46,7 +46,7 @@ using SharpCompress.Compressors.Deflate;
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
// TODO: Implement PCMCIA support
|
||||
class CHD : ImagePlugin
|
||||
public class CHD : ImagePlugin
|
||||
{
|
||||
#region Internal Structures
|
||||
|
||||
|
||||
@@ -44,7 +44,7 @@ using DiscImageChef.Filters;
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
// Checked using several images and strings inside Apple's DiskImages.framework
|
||||
class CPCDSK : ImagePlugin
|
||||
public class CPCDSK : ImagePlugin
|
||||
{
|
||||
#region Internal constants
|
||||
/// <summary>
|
||||
|
||||
@@ -42,7 +42,7 @@ using DiscImageChef.Filters;
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
// Checked using several images and strings inside Apple's DiskImages.framework
|
||||
class DIM : ImagePlugin
|
||||
public class DIM : ImagePlugin
|
||||
{
|
||||
#region Internal enumerations
|
||||
enum DiskType : byte
|
||||
|
||||
@@ -43,7 +43,7 @@ using DiscImageChef.Filters;
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
// Checked using several images and strings inside Apple's DiskImages.framework
|
||||
class DiskCopy42 : ImagePlugin
|
||||
public class DiskCopy42 : ImagePlugin
|
||||
{
|
||||
#region Internal Structures
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
// 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)
|
||||
class GDI : ImagePlugin
|
||||
public class GDI : ImagePlugin
|
||||
{
|
||||
#region Internal structures
|
||||
|
||||
|
||||
@@ -39,7 +39,7 @@ using DiscImageChef.Filters;
|
||||
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
class Nero : ImagePlugin
|
||||
public class Nero : ImagePlugin
|
||||
{
|
||||
#region Internal structures
|
||||
|
||||
|
||||
@@ -42,7 +42,7 @@ using SharpCompress.Compressors.Deflate;
|
||||
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
class QCOW : ImagePlugin
|
||||
public class QCOW : ImagePlugin
|
||||
{
|
||||
#region Internal constants
|
||||
/// <summary>
|
||||
|
||||
@@ -42,7 +42,7 @@ using SharpCompress.Compressors.Deflate;
|
||||
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
class QCOW2 : ImagePlugin
|
||||
public class QCOW2 : ImagePlugin
|
||||
{
|
||||
#region Internal constants
|
||||
/// <summary>
|
||||
|
||||
@@ -40,7 +40,7 @@ using DiscImageChef.Filters;
|
||||
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
class QED : ImagePlugin
|
||||
public class QED : ImagePlugin
|
||||
{
|
||||
#region Internal constants
|
||||
/// <summary>
|
||||
|
||||
@@ -41,7 +41,7 @@ namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
// Created following notes from Dave Dunfield
|
||||
// http://www.classiccmp.org/dunfield/img54306/td0notes.txt
|
||||
class TeleDisk : ImagePlugin
|
||||
public class TeleDisk : ImagePlugin
|
||||
{
|
||||
#region Internal Structures
|
||||
|
||||
|
||||
@@ -40,7 +40,7 @@ using DiscImageChef.Filters;
|
||||
namespace DiscImageChef.ImagePlugins
|
||||
{
|
||||
// Checked using several images and strings inside Apple's DiskImages.framework
|
||||
class ZZZRawImage : ImagePlugin
|
||||
public class ZZZRawImage : ImagePlugin
|
||||
{
|
||||
#region Internal variables
|
||||
|
||||
|
||||
47
DiscImageChef.Tests/Filesystems/ADFS.cs
Normal file
47
DiscImageChef.Tests/Filesystems/ADFS.cs
Normal file
@@ -0,0 +1,47 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : ADFS.cs
|
||||
// Version : 1.0
|
||||
// Author(s) : Natalia Portillo
|
||||
//
|
||||
// Component : Component
|
||||
//
|
||||
// Revision : $Revision$
|
||||
// Last change by : $Author$
|
||||
// Date : $Date$
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Description
|
||||
//
|
||||
// --[ License ] --------------------------------------------------------------
|
||||
//
|
||||
// This program is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as
|
||||
// published by the Free Software Foundation, either version 3 of the
|
||||
// License, or (at your option) any later version.
|
||||
//
|
||||
// This program 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 General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
//
|
||||
// ----------------------------------------------------------------------------
|
||||
// Copyright (C) 2011-2015 Claunia.com
|
||||
// ****************************************************************************/
|
||||
// //$Id$
|
||||
using System;
|
||||
namespace DiscImageChef.Tests.Filesystems
|
||||
{
|
||||
public class ADFS
|
||||
{
|
||||
public ADFS()
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user