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
PointLeafItem.h
1#ifndef PointLeafItem_H
2#define PointLeafItem_H
3
9
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "AbstractPointItem.h"
13#include "AbstractLeafItem.h"
14
15
16namespace Isis {
17 class ControlPoint;
18
31 class PointLeafItem : public AbstractPointItem, public AbstractLeafItem {
32 public:
33 PointLeafItem(ControlPoint *cp, int avgCharWidth,
34 AbstractTreeItem *parent = 0);
35 virtual ~PointLeafItem();
36
37
38 private: // Disallow copying of this class
39 PointLeafItem(const PointLeafItem &other);
40 const PointLeafItem &operator=(const PointLeafItem &other);
41 };
42}
43
44#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