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 Developer Reference
RootItem.h
Go to the documentation of this file.
1#ifndef RootItem_H
2#define RootItem_H
3
9
10/* SPDX-License-Identifier: CC0-1.0 */
11
13#include "AbstractParentItem.h"
14
15
16class QString;
17
18
19namespace Isis {
20 class ControlPoint;
21
38
39 public:
40 RootItem();
41 virtual ~RootItem();
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
AbstractNullDataItem(AbstractTreeItem *parent=0)
Definition AbstractNullDataItem.cpp:19
AbstractParentItem(AbstractTreeItem *parent=0)
Definition AbstractParentItem.cpp:17
Base class for an item in the tree.
Definition AbstractTreeItem.h:39
A single control point.
Definition ControlPoint.h:354
void setLastVisibleFilteredItem(AbstractTreeItem *item)
Definition RootItem.cpp:24
RootItem()
Definition RootItem.cpp:13
const AbstractTreeItem * getLastVisibleFilteredItem() const
Definition RootItem.cpp:29
virtual ~RootItem()
Definition RootItem.cpp:19
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16