Isis 3 Programmer Reference
ControlHealthMonitorWorkOrder.h
Go to the documentation of this file.
1 #ifndef ControlHealthMonitorWorkOrder_H
2 #define ControlHealthMonitorWorkOrder_H
3 
23 #include "WorkOrder.h"
24 
25 namespace Isis {
26  class Control;
27 
40  Q_OBJECT
41  public:
45 
46  virtual ControlHealthMonitorWorkOrder *clone() const;
47 
48  virtual bool isExecutable(ControlList *controls);
49 
50  bool setupExecution();
51  void execute();
52 
53  private:
55  };
56 }
57 #endif
The main project for ipce.
Definition: Project.h:289
Maintains a list of Controls so that control nets can easily be copied from one Project to another...
Definition: ControlList.h:36
This is a child of class WorkOrder which is used for anything that performs an action in a Project...
virtual bool isExecutable(ControlList *controls)
Determines if we can execute the health monitor.
Provide Undo/redo abilities, serialization, and history for an operation.
Definition: WorkOrder.h:322
Unless noted otherwise, the portions of Isis written by the USGS are public domain.
virtual ControlHealthMonitorWorkOrder * clone() const
Returns a copy of this ControlHealthMonitorWorkOrder instance.
void execute()
Set the active control net for the project.
bool setupExecution()
Make sure an active ImageList has been chosen.
ControlHealthMonitorWorkOrder(Project *project)
Creates a WorkOrder that will display the Control Net Health Monitor interface.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Project * project() const
Returns the Project this WorkOrder is attached to.
Definition: WorkOrder.cpp:1314