Isis 3 Programmer Reference
SensorGetInfoWorkOrder.h
Go to the documentation of this file.
1 #ifndef SensorGetInfoWorkOrder_H
2 #define SensorGetInfoWorkOrder_H
3 
25 #include "WorkOrder.h"
26 
27 namespace Isis {
28  class GuiCamera;
29 
47  Q_OBJECT
48  public:
52 
53  virtual SensorGetInfoWorkOrder *clone() const;
54 
55  virtual bool isExecutable(GuiCameraQsp camera);
56  bool setupExecution();
57 
58  protected:
59  bool dependsOn(WorkOrder *other) const;
60  void execute();
61  void undoExecution();
62 
63  private:
64  SensorGetInfoWorkOrder &operator=(const SensorGetInfoWorkOrder &rhs);
65  };
66 }
67 #endif
void execute()
Redisplays the sensor view.
The main project for ipce.
Definition: Project.h:289
This is a child of class WorkOrder which is used for anything that performs an action in a Project...
SensorGetInfoWorkOrder(Project *project)
Creates a WorkOrder that will retrieve target body info.
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.
bool setupExecution()
Attempts to retrieve target body info from the camera and display it in a view.
virtual bool isExecutable(GuiCameraQsp camera)
Determine if we already have a view for this camera.
void undoExecution()
Deletes the last view.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
bool dependsOn(WorkOrder *other) const
Determines whether a WorkOrder depends upon SensorGetInfoWorkerOrder.
Project * project() const
Returns the Project this WorkOrder is attached to.
Definition: WorkOrder.cpp:1314
virtual SensorGetInfoWorkOrder * clone() const
Returns a copy of the current instance of this WorkOrder.