USGS

Isis 3.0 Object Programmers' Reference

Home

CnetEditorViewWorkOrder.h
Go to the documentation of this file.
1 #ifndef CnetEditorViewWorkOrder_H
2 #define CnetEditorViewWorkOrder_H
3 
25 #include "WorkOrder.h"
26 
27 namespace Isis {
36  Q_OBJECT
37  public:
41 
42  virtual CnetEditorViewWorkOrder *clone() const;
43 
44  virtual bool isExecutable(QList<Control *> controls);
45  bool execute();
46 
47  protected:
48  bool dependsOn(WorkOrder *other) const;
49  void syncRedo();
50  void syncUndo();
51 
52  private:
53  CnetEditorViewWorkOrder &operator=(const CnetEditorViewWorkOrder &rhs);
54  };
55 }
56 #endif
57