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 Q_OBJECT
39
40 public:
41 RootItem();
42 virtual ~RootItem();
43 void setLastVisibleFilteredItem(AbstractTreeItem *item);
44 const AbstractTreeItem *getLastVisibleFilteredItem() const;
45
46
47 private: // disable copying of this class
48 RootItem(const RootItem &other);
49 const RootItem &operator=(const RootItem &other);
50
51
52 private:
53 AbstractTreeItem *m_lastVisibleFilteredItem;
54 };
55}
56
57#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