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