Isis 3 Programmer Reference
ImageParentItem.h
1 #ifndef ImageParentItem_H
2 #define ImageParentItem_H
3 
4 #include <QString>
5 
6 #include "AbstractImageItem.h"
7 #include "AbstractParentItem.h"
8 
9 
10 namespace Isis {
11  class ControlNet;
12 
27  public:
28  ImageParentItem(QString imageSerial, ControlNet *net,
29  int avgCharWidth, AbstractTreeItem *parent = 0);
30  virtual ~ImageParentItem();
31 
32 
33  private: // Disallow copying of this class
34  ImageParentItem(const ImageParentItem &other);
35  const ImageParentItem &operator=(const ImageParentItem &other);
36  };
37 }
38 
39 #endif
Tree item that is a parent and represents an image.
a control network
Definition: ControlNet.h:271
Base class for an image item in the tree.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Base class for an item in the tree.
Base class for an item that is a parent in the tree.