Moved the NAPS2.Scan.Recovery namespace to NAPS2.Recovery, since it's not really related to scanning.

This commit is contained in:
Ben Olden-Cooligan 2013-08-28 18:18:10 -04:00
parent fa68c0d78d
commit a842e0bef2
7 changed files with 11 additions and 10 deletions

View File

@ -152,10 +152,10 @@
<Compile Include="LoggerFactory.cs" /> <Compile Include="LoggerFactory.cs" />
<Compile Include="MessageBoxErrorOutput.cs" /> <Compile Include="MessageBoxErrorOutput.cs" />
<Compile Include="Paths.cs" /> <Compile Include="Paths.cs" />
<Compile Include="Scan\Recovery\RecoveryIndex.cs" /> <Compile Include="Recovery\RecoveryIndex.cs" />
<Compile Include="Scan\Recovery\RecoveryIndexImage.cs" /> <Compile Include="Recovery\RecoveryIndexImage.cs" />
<Compile Include="Scan\Recovery\RecoveryIndexManager.cs" /> <Compile Include="Recovery\RecoveryIndexManager.cs" />
<Compile Include="Scan\Recovery\RecoveryManager.cs" /> <Compile Include="Recovery\RecoveryManager.cs" />
<Compile Include="Scan\Images\ScannedImageFactory.cs" /> <Compile Include="Scan\Images\ScannedImageFactory.cs" />
<Compile Include="Scan\Images\ScannedImageHelper.cs" /> <Compile Include="Scan\Images\ScannedImageHelper.cs" />
<Compile Include="Scan\Images\ScannedImageList.cs" /> <Compile Include="Scan\Images\ScannedImageList.cs" />

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace NAPS2.Scan.Recovery namespace NAPS2.Recovery
{ {
public class RecoveryIndex public class RecoveryIndex
{ {

View File

@ -2,7 +2,7 @@
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace NAPS2.Scan.Recovery namespace NAPS2.Recovery
{ {
public class RecoveryIndexImage public class RecoveryIndexImage
{ {

View File

@ -4,7 +4,7 @@ using System.IO;
using System.Linq; using System.Linq;
using NAPS2.Config; using NAPS2.Config;
namespace NAPS2.Scan.Recovery namespace NAPS2.Recovery
{ {
public class RecoveryIndexManager : ConfigManager<RecoveryIndex> public class RecoveryIndexManager : ConfigManager<RecoveryIndex>
{ {

View File

@ -4,13 +4,14 @@ using System.Drawing;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Windows.Forms; using System.Windows.Forms;
using NAPS2.Scan;
using NAPS2.Scan.Images; using NAPS2.Scan.Images;
using NAPS2.WinForms; using NAPS2.WinForms;
using Ninject; using Ninject;
using Ninject.Parameters; using Ninject.Parameters;
using NLog; using NLog;
namespace NAPS2.Scan.Recovery namespace NAPS2.Recovery
{ {
public class RecoveryManager public class RecoveryManager
{ {

View File

@ -26,7 +26,7 @@ using System.Drawing.Imaging;
using System.Globalization; using System.Globalization;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using NAPS2.Scan.Recovery; using NAPS2.Recovery;
using NLog; using NLog;
namespace NAPS2.Scan.Images namespace NAPS2.Scan.Images

View File

@ -33,9 +33,9 @@ using NAPS2.ImportExport.Email;
using NAPS2.ImportExport.Images; using NAPS2.ImportExport.Images;
using NAPS2.Lang; using NAPS2.Lang;
using NAPS2.Lang.Resources; using NAPS2.Lang.Resources;
using NAPS2.Recovery;
using NAPS2.Scan; using NAPS2.Scan;
using NAPS2.Scan.Images; using NAPS2.Scan.Images;
using NAPS2.Scan.Recovery;
using Ninject; using Ninject;
using Ninject.Parameters; using Ninject.Parameters;
using NLog; using NLog;