Move Firmware manager classes to Client.Common

This commit is contained in:
adelikat 2013-10-21 00:48:20 +00:00
parent 774702f1ba
commit f04efe0294
4 changed files with 5 additions and 8 deletions

View File

@ -47,6 +47,8 @@
<Compile Include="config\Binding.cs" /> <Compile Include="config\Binding.cs" />
<Compile Include="config\Config.cs" /> <Compile Include="config\Config.cs" />
<Compile Include="config\ConfigService.cs" /> <Compile Include="config\ConfigService.cs" />
<Compile Include="CoreFileProvider.cs" />
<Compile Include="FirmwareManager.cs" />
<Compile Include="Global.cs" /> <Compile Include="Global.cs" />
<Compile Include="helpers\InputValidate.cs" /> <Compile Include="helpers\InputValidate.cs" />
<Compile Include="KeyTurbo.cs" /> <Compile Include="KeyTurbo.cs" />

View File

@ -2,9 +2,9 @@
using System.IO; using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
namespace BizHawk.MultiClient namespace BizHawk.Client.Common
{ {
class CoreFileProvider : ICoreFileProvider public class CoreFileProvider : ICoreFileProvider
{ {
public string SubfileDirectory; public string SubfileDirectory;
public FirmwareManager FirmwareManager; public FirmwareManager FirmwareManager;

View File

@ -3,12 +3,10 @@ using System.Linq;
using System.IO; using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using BizHawk.Client.Common;
//IDEA: put filesizes in DB too. then scans can go real quick by only scanning filesizes that match (and then scanning filesizes that dont match, in case of an emergency) //IDEA: put filesizes in DB too. then scans can go real quick by only scanning filesizes that match (and then scanning filesizes that dont match, in case of an emergency)
//this would be adviseable if we end up with a very large firmware file //this would be adviseable if we end up with a very large firmware file
namespace BizHawk.MultiClient namespace BizHawk.Client.Common
{ {
public class FirmwareManager public class FirmwareManager
{ {
@ -188,5 +186,4 @@ namespace BizHawk.MultiClient
} }
} }
} }

View File

@ -275,7 +275,6 @@
<Compile Include="config\SoundConfig.Designer.cs"> <Compile Include="config\SoundConfig.Designer.cs">
<DependentUpon>SoundConfig.cs</DependentUpon> <DependentUpon>SoundConfig.cs</DependentUpon>
</Compile> </Compile>
<Compile Include="CoreFileProvider.cs" />
<Compile Include="CustomControls\FolderBrowserDialogEx.cs"> <Compile Include="CustomControls\FolderBrowserDialogEx.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
</Compile> </Compile>
@ -313,7 +312,6 @@
<Compile Include="CustomControls\Win32.cs" /> <Compile Include="CustomControls\Win32.cs" />
<Compile Include="DisplayManager\DisplayManager.cs" /> <Compile Include="DisplayManager\DisplayManager.cs" />
<Compile Include="DisplayManager\Filters\Hq2x.cs" /> <Compile Include="DisplayManager\Filters\Hq2x.cs" />
<Compile Include="FirmwareManager.cs" />
<Compile Include="GlobalWinF.cs" /> <Compile Include="GlobalWinF.cs" />
<Compile Include="HawkFile.cs" /> <Compile Include="HawkFile.cs" />
<Compile Include="Input\ControllerBinding.cs" /> <Compile Include="Input\ControllerBinding.cs" />