Isis 3 Programmer Reference
PointLeafItem.h
1 #ifndef PointLeafItem_H
2 #define PointLeafItem_H
3 
4 
5 #include "AbstractPointItem.h"
6 #include "AbstractLeafItem.h"
7 
8 
9 namespace Isis {
10  class ControlPoint;
11 
25  public:
26  PointLeafItem(ControlPoint *cp, int avgCharWidth,
27  AbstractTreeItem *parent = 0);
28  virtual ~PointLeafItem();
29 
30 
31  private: // Disallow copying of this class
32  PointLeafItem(const PointLeafItem &other);
33  const PointLeafItem &operator=(const PointLeafItem &other);
34  };
35 }
36 
37 #endif
Base class for a point item in the tree.
A single control point.
Definition: ControlPoint.h:369
Base class for leaf items in the tree.
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31
A leaf node in the tree structure that represents a control point.
Definition: PointLeafItem.h:24
Base class for an item in the tree.