Isis 3 Programmer Reference
RemoveImagesWorkOrder.h
Go to the documentation of this file.
1 #ifndef RemoveImagesWorkOrder_H
2 #define RemoveImagesWorkOrder_H
3 
25 #include "WorkOrder.h"
26 
27 namespace Isis {
28  class ImageList;
29  class Project;
30 
57  Q_OBJECT
58  public:
62 
63  virtual RemoveImagesWorkOrder *clone() const;
64 
65  virtual bool isExecutable(ImageList *images);
66 
67  bool setupExecution();
68 
69  protected:
70  void execute();
71 
72  private:
73  RemoveImagesWorkOrder &operator=(const RemoveImagesWorkOrder &rhs);
74 
75  };
76 }
77 #endif
Internalizes a list of images and allows for operations on the entire list.
Definition: ImageList.h:55
The main project for ipce.
Definition: Project.h:289
void execute()
Remove any selected items from the project directory.
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()
Set up the execution.
virtual bool isExecutable(ImageList *images)
Determines if we can remove this ImageList.
Removes selected images from current project.
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