Isis 3 Programmer Reference
JigsawWorkOrder.h
Go to the documentation of this file.
1 #ifndef JigsawWorkOrder_H
2 #define JigsawWorkOrder_H
3 
25 #include "WorkOrder.h"
26 
27 template <class T>
29 
30 namespace Isis {
31  class BundleSettings;
62  class JigsawWorkOrder : public WorkOrder {
63  Q_OBJECT
64  public:
66  JigsawWorkOrder(const JigsawWorkOrder &other);
68 
69  virtual JigsawWorkOrder *clone() const;
70 
71  virtual bool isExecutable();
72  virtual void execute();
73 
74  protected:
75  bool dependsOn(WorkOrder *other) const;
76 
77  private:
78  JigsawWorkOrder &operator=(const JigsawWorkOrder &rhs);
80  };
81 }
82 #endif
The main project for ipce.
Definition: Project.h:289
JigsawWorkOrder(Project *project)
Constructs a JigsawWorkOrder.
virtual bool isExecutable()
This method is no longer necessary and will remain commented out until it needs to be implemented...
~JigsawWorkOrder()
Destructor.
bool dependsOn(WorkOrder *other) const
This method returns true if other depends on a JigsawWorkOrder.
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.
BundleSettingsQsp m_bundleSettings
BundleSettings shared betweeen setup and execute.
QSharedPointer< BundleSettings > BundleSettingsQsp
Definition for a BundleSettingsQsp, a shared pointer to a BundleSettings object.
virtual void execute()
Executes the work order by creating a jigsaw dialog that allows the user to run or re-setup the setti...
This work order allows the user to run a bundle adjustment (jigsaw).
virtual JigsawWorkOrder * clone() const
This method clones the JigsawViewWorkOrder.
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