Isis 3 Programmer Reference
PointParentItem.h
1 #ifndef PointParentItem_H
2 #define PointParentItem_H
3 
4 
5 #include "AbstractParentItem.h"
6 #include "AbstractPointItem.h"
7 
8 
9 class QVariant;
10 
11 namespace Isis {
12  class ControlPoint;
13 
27  public:
28  PointParentItem(ControlPoint *cp, int avgCharWidth,
29  AbstractTreeItem *parent = 0);
30  virtual ~PointParentItem();
31 
32  void addChild(AbstractTreeItem *child);
33 
34 
35  private: // Disallow copying of this class
36  PointParentItem(const PointParentItem &other);
37  const PointParentItem &operator=(const PointParentItem &other);
38  };
39 }
40 
41 #endif
Base class for a point item in the tree.
A single control point.
Definition: ControlPoint.h:369
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
Base class for an item in the tree.
Tree item that is a parent and represents a control point.
Base class for an item that is a parent in the tree.