aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
diff options
context:
space:
mode:
authorShlomo Hecht <shlomo@twine-s.com>2018-08-08 18:47:43 +0300
committerShlomo Hecht <shlomo@twine-s.com>2018-08-08 18:47:43 +0300
commitf1540db9b9b8d080f73404a290671979991ed91b (patch)
tree6ec60e2432773d09fe59e6c2544da717610f5834 /Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
parent6150ec1b0a69647b9ed86272b40499af3d83d812 (diff)
parent965a7bd752315653d710d16651f34d66d4d80d0a (diff)
downloadTango-f1540db9b9b8d080f73404a290671979991ed91b.tar.gz
Tango-f1540db9b9b8d080f73404a290671979991ed91b.zip
Merge branch 'master' of https://twinetfs.visualstudio.com/Tango/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs7
1 files changed, 6 insertions, 1 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
index 025402122..52fc5acd1 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
@@ -8,6 +8,11 @@ namespace Tango.PPC.Common.MachineSetup
{
public interface IMachineSetupManager
{
- void Setup(String serialNumber, String hostAddress);
+ MachineSetupSteps CurrentStep { get; }
+ event EventHandler<String> ProgressLog;
+ double UpdatingPackagesProgress { get; }
+ String UpdatingPackagesStatus { get; }
+ event EventHandler<MachineSetupSteps> ProgressStep;
+ Task Setup(String serialNumber, String hostAddress);
}
}