File failed to load: https://isis.astrogeology.usgs.gov/dev/Object/assets/jax/output/NativeMML/config.js
Isis Developer Reference
SensorGetInfoWorkOrder.h
Go to the documentation of this file.
1#ifndef SensorGetInfoWorkOrder_H
2#define SensorGetInfoWorkOrder_H
25#include "WorkOrder.h"
26
27namespace Isis {
28 class GuiCamera;
29
45
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:
65 };
66}
67#endif
Container class for GuiCamera.
Definition GuiCamera.h:70
The main project for ipce.
Definition Project.h:287
bool setupExecution()
Attempts to retrieve target body info from the camera and display it in a view.
Definition SensorGetInfoWorkOrder.cpp:106
void execute()
Redisplays the sensor view.
Definition SensorGetInfoWorkOrder.cpp:136
virtual bool isExecutable(GuiCameraQsp camera)
Determine if we already have a view for this camera.
Definition SensorGetInfoWorkOrder.cpp:86
void undoExecution()
Deletes the last view.
Definition SensorGetInfoWorkOrder.cpp:152
virtual SensorGetInfoWorkOrder * clone() const
Returns a copy of the current instance of this WorkOrder.
Definition SensorGetInfoWorkOrder.cpp:72
SensorGetInfoWorkOrder(Project *project)
Creates a WorkOrder that will retrieve target body info.
Definition SensorGetInfoWorkOrder.cpp:43
bool dependsOn(WorkOrder *other) const
Determines whether a WorkOrder depends upon SensorGetInfoWorkerOrder.
Definition SensorGetInfoWorkOrder.cpp:127
~SensorGetInfoWorkOrder()
The Destructor.
Definition SensorGetInfoWorkOrder.cpp:64
Project * project() const
Returns the Project this WorkOrder is attached to.
Definition WorkOrder.cpp:1288
WorkOrder(Project *project)
Create a work order that will work with the given project.
Definition WorkOrder.cpp:38
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16
QSharedPointer< GuiCamera > GuiCameraQsp
GuiCameraQsp Represents a smart pointer to a GuiCamera object.
Definition GuiCamera.h:156