USGS

Isis 3.0 Object Programmers' Reference

Home

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 
12  namespace CnetViz {
13 
26  public:
27  PointLeafItem(ControlPoint *cp, int avgCharWidth,
28  AbstractTreeItem *parent = 0);
29  virtual ~PointLeafItem();
30 
31 
32  private: // Disallow copying of this class
33  PointLeafItem(const PointLeafItem &other);
34  const PointLeafItem &operator=(const PointLeafItem &other);
35  };
36  }
37 }
38 
39 #endif