Inserito ciclo x verifica apertura 2 nuove tipologie di adapter (per ora empty...)
This commit is contained in:
Binary file not shown.
+9
-1
@@ -864,13 +864,21 @@ namespace IOB_UT
|
||||
/// </summary>
|
||||
SIEMENS,
|
||||
/// <summary>
|
||||
/// Adapter SIEMENS, interfaccia versione APROCHIM (filtro liquidi rettifiche)
|
||||
/// </summary>
|
||||
SIEMENS_APROCHIM,
|
||||
/// <summary>
|
||||
/// Adapter SIEMENS, interfaccia versione FAPE (punzonatrici)
|
||||
/// </summary>
|
||||
SIEMENS_FAPE,
|
||||
/// <summary>
|
||||
/// Adapter SIEMENS, interfaccia versione Torri
|
||||
/// </summary>
|
||||
SIEMENS_TORRI
|
||||
SIEMENS_TORRI,
|
||||
/// <summary>
|
||||
/// Metodi di WebPageScraping (es x compressori Atlas Copco)
|
||||
/// </summary>
|
||||
WPS
|
||||
}
|
||||
|
||||
public enum gatherCycle
|
||||
|
||||
@@ -616,6 +616,10 @@ namespace IOB_WIN
|
||||
iobObj = new IobSiemens(this, IOBConf);
|
||||
start.Enabled = true;
|
||||
break;
|
||||
case tipoAdapter.SIEMENS_APROCHIM:
|
||||
iobObj = new IobSiemensAprochim(this, IOBConf);
|
||||
start.Enabled = true;
|
||||
break;
|
||||
case tipoAdapter.SIEMENS_FAPE:
|
||||
iobObj = new IobSiemensFape(this, IOBConf);
|
||||
start.Enabled = true;
|
||||
@@ -624,6 +628,10 @@ namespace IOB_WIN
|
||||
iobObj = new IobSiemensTorri(this, IOBConf);
|
||||
start.Enabled = true;
|
||||
break;
|
||||
case tipoAdapter.WPS:
|
||||
iobObj = new IobWPS(this, IOBConf);
|
||||
start.Enabled = true;
|
||||
break;
|
||||
case tipoAdapter.ND:
|
||||
default:
|
||||
iobObj = new IobSimula(this, IOBConf);
|
||||
|
||||
@@ -109,8 +109,10 @@
|
||||
<Compile Include="..\VersGen\VersGen.cs">
|
||||
<Link>VersGen.cs</Link>
|
||||
</Compile>
|
||||
<Compile Include="IobWPS.cs" />
|
||||
<Compile Include="IobOSAI.cs" />
|
||||
<Compile Include="IobKawasaki.cs" />
|
||||
<Compile Include="IobSiemensAprochim.cs" />
|
||||
<Compile Include="IobSiemensFape.cs" />
|
||||
<Compile Include="specialConfig.cs" />
|
||||
<Compile Include="IobConfiguration.cs" />
|
||||
|
||||
Reference in New Issue
Block a user