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
RootItem.h
1#ifndef RootItem_H
2#define RootItem_H
3
9
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "AbstractNullDataItem.h"
13#include "AbstractParentItem.h"
14
15
16class QString;
17
18
19namespace Isis {
20 class ControlPoint;
21
37 class RootItem : public AbstractNullDataItem, public AbstractParentItem {
38
39 public:
40 RootItem();
41 virtual ~RootItem();
42 void setLastVisibleFilteredItem(AbstractTreeItem *item);
43 const AbstractTreeItem *getLastVisibleFilteredItem() const;
44
45
46 private: // disable copying of this class
47 RootItem(const RootItem &other);
48 const RootItem &operator=(const RootItem &other);
49
50
51 private:
52 AbstractTreeItem *m_lastVisibleFilteredItem;
53 };
54}
55
56#endif
Base class for an item in the tree.
A single control point.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16