Isis 3 Programmer Reference
ExportControlNetWorkOrder.h
1 #ifndef ExportControlNetWorkOrder_H
2 #define ExportControlNetWorkOrder_H
3 
4 #include "WorkOrder.h"
5 
6 
7 namespace Isis {
37  Q_OBJECT
38  public:
42 
43  virtual ExportControlNetWorkOrder *clone() const;
44 
45  bool isExecutable(ControlList *controls);
46 
47  virtual bool setupExecution();
48  virtual void execute();
49 
50  protected:
51  virtual void postExecution();
52 
53  private:
55 
56  QString m_warning;
57  };
58 }
59 
60 #endif // ExportControlNetWorkOrder_H
bool isExecutable(ControlList *controls)
Determines if we can export a control net.
The main project for ipce.
Definition: Project.h:289
Write a project control network to a user-specified location.
Maintains a list of Controls so that control nets can easily be copied from one Project to another...
Definition: ControlList.h:36
virtual bool setupExecution()
Prepares for exporting a control net by soliciting information from the user.
virtual void postExecution()
Display any warnings that occurred during the asynchronous computations.
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 ExportControlNetWorkOrder * clone() const
Clones this work order.
ExportControlNetWorkOrder(Project *project)
Creates a work order for exporting a control network from the project.
virtual void execute()
Executes the work order.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
QString m_warning
Stores any errors that may have occurred during export.
Project * project() const
Returns the Project this WorkOrder is attached to.
Definition: WorkOrder.cpp:1314