Isis 3.0 Programmer Reference
Home
PointLeafItem.cpp
1 #include "IsisDebug.h"
2 
3 #include "PointLeafItem.h"
4 
5 
6 namespace Isis {
7  namespace CnetViz {
8  PointLeafItem::PointLeafItem(ControlPoint *cp, int avgCharWidth,
9  AbstractTreeItem *parent) : AbstractTreeItem(parent),
10  AbstractPointItem(cp, avgCharWidth) {
11  }
12 
13 
14  PointLeafItem::~PointLeafItem() {
15  }
16  }
17 }