File failed to load: https://isis.astrogeology.usgs.gov/3.9.0/Object/assets/jax/output/NativeMML/config.js
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

U.S. Department of the Interior | U.S. Geological Survey
ISIS | Privacy & Disclaimers | Astrogeology Research Program
To contact us, please post comments and questions on the USGS Astrogeology Discussion Board
To report a bug, or suggest a feature go to: ISIS Github
File Modified: 07/12/2023 23:16:06