Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Secure .gov websites use HTTPS
A lock ( ) or https:// means you’ve safely connected to the .gov website. Share sensitive information only on official, secure websites.

Isis 3 Programmer Reference
BusyLeafItem.h
1#ifndef BusyLeafItem_H
2#define BusyLeafItem_H
3
9
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "AbstractLeafItem.h"
13#include "AbstractNullDataItem.h"
14
15
16class QString;
17class QVariant;
18
19
20namespace Isis {
21
33 class BusyLeafItem : public AbstractNullDataItem, public AbstractLeafItem {
34
35 public:
36 BusyLeafItem(AbstractTreeItem *parent = 0);
37 virtual ~BusyLeafItem();
38 virtual QVariant getData() const;
39 virtual bool isSelectable() const;
40
41
42 private: // Disallow copying of this class
43 BusyLeafItem(const BusyLeafItem &other);
44 const BusyLeafItem &operator=(const BusyLeafItem &other);
45 };
46}
47
48#endif
Base class for an item in the tree.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16