Isis 3 Programmer Reference
ConnectionParentItem.h
1 #ifndef ConnectionParentItem_H
2 #define ConnectionParentItem_H
3 
4 
5 #include "AbstractImageItem.h"
6 #include "AbstractParentItem.h"
7 
8 class QString;
9 
10 namespace Isis {
11  class ControlNet;
12 
27  public AbstractParentItem {
28  public:
29  ConnectionParentItem(QString imageSerial, ControlNet *net,
30  int avgCharWidth, AbstractTreeItem *parent = 0);
31  virtual ~ConnectionParentItem();
32 
33  void addChild(AbstractTreeItem *child);
34 
35 
36  private: // Disallow copying of this class
38  const ConnectionParentItem &operator=(const ConnectionParentItem &);
39  };
40 }
41 
42 #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.