diff options
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.cs | 5 |
1 files changed, 4 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..69acfbbcf 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,9 @@ namespace Tango.PPC.Common.MachineSetup { public interface IMachineSetupManager { - void Setup(String serialNumber, String hostAddress); + MachineSetupSteps CurrentStep { get; } + event EventHandler<String> ProgressLog; + event EventHandler<MachineSetupSteps> ProgressStep; + Task Setup(String serialNumber, String hostAddress); } } |
