REFACTOR: Updated comments and copyright date.

This commit is contained in:
2017-12-19 03:50:57 +00:00
parent 341e8b563a
commit 1a39168f19
716 changed files with 2760 additions and 4058 deletions

View File

@@ -2,19 +2,14 @@
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : AudioMedia.cs
// Version : 1.0
// Author(s) : Natalia Portillo
// Filename : Audio.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Component
//
// Revision : $Revision$
// Last change by : $Author$
// Date : $Date$
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Description
// Contains logic to create sidecar from an audio media dump.
//
// --[ License ] --------------------------------------------------------------
//
@@ -32,9 +27,9 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright (C) 2011-2015 Claunia.com
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
// //$Id$
using System.Collections.Generic;
using System.IO;

View File

@@ -3,18 +3,13 @@
// ----------------------------------------------------------------------------
//
// Filename : BlockMedia.cs
// Version : 1.0
// Author(s) : Natalia Portillo
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Component
//
// Revision : $Revision$
// Last change by : $Author$
// Date : $Date$
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Description
// Contains logic to create sidecar from a block media dump.
//
// --[ License ] --------------------------------------------------------------
//
@@ -32,9 +27,9 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright (C) 2011-2015 Claunia.com
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
// //$Id$
using System;
using System.Collections.Generic;

View File

@@ -3,18 +3,13 @@
// ----------------------------------------------------------------------------
//
// Filename : BlockTape.cs
// Version : 1.0
// Author(s) : Natalia Portillo
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Component
//
// Revision : $Revision$
// Last change by : $Author$
// Date : $Date$
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Description
// Contains logic to create sidecar from a block tape media dump.
//
// --[ License ] --------------------------------------------------------------
//
@@ -32,11 +27,11 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright (C) 2011-2015 Claunia.com
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
// //$Id$
using System.Collections.Generic;
using System.Collections.Generic;
using Schemas;
using System.IO;

View File

@@ -3,18 +3,13 @@
// ----------------------------------------------------------------------------
//
// Filename : Events.cs
// Version : 1.0
// Author(s) : Natalia Portillo
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Component
//
// Revision : $Revision$
// Last change by : $Author$
// Date : $Date$
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Description
// Events to glue user interface with sidecar creation.
//
// --[ License ] --------------------------------------------------------------
//
@@ -32,9 +27,9 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright (C) 2011-2015 Claunia.com
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
// //$Id$
using System;
namespace DiscImageChef.Core
{

View File

@@ -3,18 +3,13 @@
// ----------------------------------------------------------------------------
//
// Filename : Helpers.cs
// Version : 1.0
// Author(s) : Natalia Portillo
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Component
//
// Revision : $Revision$
// Last change by : $Author$
// Date : $Date$
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Description
// Contains helper logic used on sidecar creation.
//
// --[ License ] --------------------------------------------------------------
//
@@ -32,9 +27,9 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright (C) 2011-2015 Claunia.com
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
// //$Id$
using System;
namespace DiscImageChef.Core
{

View File

@@ -3,18 +3,13 @@
// ----------------------------------------------------------------------------
//
// Filename : LinearMedia.cs
// Version : 1.0
// Author(s) : Natalia Portillo
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Component
//
// Revision : $Revision$
// Last change by : $Author$
// Date : $Date$
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Description
// Contains logic to create sidecar from a linear media dump.
//
// --[ License ] --------------------------------------------------------------
//
@@ -32,9 +27,9 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright (C) 2011-2015 Claunia.com
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
// //$Id$
using System.Collections.Generic;
using System.IO;

View File

@@ -3,18 +3,13 @@
// ----------------------------------------------------------------------------
//
// Filename : OpticalDisc.cs
// Version : 1.0
// Author(s) : Natalia Portillo
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Component
//
// Revision : $Revision$
// Last change by : $Author$
// Date : $Date$
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Description
// Contains logic to create sidecar from an optical media dump.
//
// --[ License ] --------------------------------------------------------------
//
@@ -32,12 +27,12 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright (C) 2011-2015 Claunia.com
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
// //$Id$
using System.Collections.Generic;
using System.IO;
using System.Collections.Generic;
using System.IO;
using DiscImageChef.CommonTypes;
using DiscImageChef.Filesystems;
using DiscImageChef.ImagePlugins;

View File

@@ -3,18 +3,13 @@
// ----------------------------------------------------------------------------
//
// Filename : Sidecar.cs
// Version : 1.0
// Author(s) : Natalia Portillo
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Component
//
// Revision : $Revision$
// Last change by : $Author$
// Date : $Date$
// Component : Core algorithms.
//
// --[ Description ] ----------------------------------------------------------
//
// Description
// Creates sidecar from dump.
//
// --[ License ] --------------------------------------------------------------
//
@@ -32,9 +27,9 @@
// along with this program. If not, see <http://www.gnu.org/licenses/>.
//
// ----------------------------------------------------------------------------
// Copyright (C) 2011-2015 Claunia.com
// Copyright © 2011-2018 Natalia Portillo
// ****************************************************************************/
// //$Id$
using System.Collections.Generic;
using System.IO;