aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
diff options
context:
space:
mode:
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.cs19
1 files changed, 3 insertions, 16 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 145335e09..896c7b921 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/MachineSetup/IMachineSetupManager.cs
@@ -11,10 +11,7 @@ namespace Tango.PPC.Common.MachineSetup
/// </summary>
public interface IMachineSetupManager
{
- /// <summary>
- /// Gets the current setup step.
- /// </summary>
- MachineSetupSteps CurrentStep { get; }
+ MachineSetupProgress Status { get; }
/// <summary>
/// Occurs when there is a text log message available.
@@ -22,19 +19,9 @@ namespace Tango.PPC.Common.MachineSetup
event EventHandler<String> ProgressLog;
/// <summary>
- /// Gets the downloading packages step progress.
- /// </summary>
- double DownloadingPackagesProgress { get; }
-
- /// <summary>
- /// Gets the downloading packages step status.
- /// </summary>
- String DownloadingPackagesStatus { get; }
-
- /// <summary>
- /// Occurs when the <see cref="CurrentStep"/> has changed.
+ /// Occurs when the setup has made some progress.
/// </summary>
- event EventHandler<MachineSetupSteps> ProgressStep;
+ event EventHandler<MachineSetupProgress> Progress;
/// <summary>
/// Performs a machine setup using the specified serial number and machine service address.