Image classes should be public.

This commit is contained in:
2017-07-01 02:49:09 +01:00
parent 32792c398a
commit 5fd16faede
15 changed files with 61 additions and 14 deletions

View File

@@ -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>

View File

@@ -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

View File

@@ -42,7 +42,7 @@ using DiscImageChef.Filters;
namespace DiscImageChef.ImagePlugins
{
class CDRWin : ImagePlugin
public class CDRWin : ImagePlugin
{
#region Internal structures

View File

@@ -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

View File

@@ -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>

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -39,7 +39,7 @@ using DiscImageChef.Filters;
namespace DiscImageChef.ImagePlugins
{
class Nero : ImagePlugin
public class Nero : ImagePlugin
{
#region Internal structures

View File

@@ -42,7 +42,7 @@ using SharpCompress.Compressors.Deflate;
namespace DiscImageChef.ImagePlugins
{
class QCOW : ImagePlugin
public class QCOW : ImagePlugin
{
#region Internal constants
/// <summary>

View File

@@ -42,7 +42,7 @@ using SharpCompress.Compressors.Deflate;
namespace DiscImageChef.ImagePlugins
{
class QCOW2 : ImagePlugin
public class QCOW2 : ImagePlugin
{
#region Internal constants
/// <summary>

View File

@@ -40,7 +40,7 @@ using DiscImageChef.Filters;
namespace DiscImageChef.ImagePlugins
{
class QED : ImagePlugin
public class QED : ImagePlugin
{
#region Internal constants
/// <summary>

View File

@@ -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

View File

@@ -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

View 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()
{
}
}
}