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
ConnectionParentItem.h
1#ifndef ConnectionParentItem_H
2#define ConnectionParentItem_H
3
9
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "AbstractImageItem.h"
13#include "AbstractParentItem.h"
14
15class QString;
16
17namespace Isis {
18 class ControlNet;
19
33 class ConnectionParentItem : public AbstractImageItem,
34 public AbstractParentItem {
35 public:
36 ConnectionParentItem(QString imageSerial, ControlNet *net,
37 int avgCharWidth, AbstractTreeItem *parent = 0);
38 virtual ~ConnectionParentItem();
39
40 void addChild(AbstractTreeItem *child);
41
42
43 private: // Disallow copying of this class
44 ConnectionParentItem(const ConnectionParentItem &);
45 const ConnectionParentItem &operator=(const ConnectionParentItem &);
46 };
47}
48
49#endif
Base class for an item in the tree.
a control network
Definition ControlNet.h:258
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16