Isis 3 Programmer Reference
BusyLeafItem.cpp
1 #include "BusyLeafItem.h"
2 
3 #include <QVariant>
4 
5 #include "IException.h"
6 #include "IString.h"
7 
8 #include "AbstractTreeItem.h"
9 
10 
11 namespace Isis {
12  BusyLeafItem::BusyLeafItem(AbstractTreeItem *parent)
13  : AbstractTreeItem(parent), AbstractNullDataItem() {
14  calcDataWidth(1);
15  }
16 
17 
18  BusyLeafItem::~BusyLeafItem() {
19  }
20 
21 
22  QVariant BusyLeafItem::getData() const {
23  return QVariant("Working...");
24  }
25 
26 
27  bool BusyLeafItem::isSelectable() const {
28  return false;
29  }
30 }
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31