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.cpp
1
6
7/* SPDX-License-Identifier: CC0-1.0 */
8
9#include "ConnectionParentItem.h"
10
11#include "ImageParentItem.h"
12
13
14namespace Isis {
15 ConnectionParentItem::ConnectionParentItem(QString imageSerial, ControlNet *net,
16 int avgCharWidth, AbstractTreeItem *parent)
17 : AbstractTreeItem(parent), AbstractImageItem(imageSerial, net, avgCharWidth) {
18 }
19
20
21 ConnectionParentItem::~ConnectionParentItem() {
22 }
23
24
25 void ConnectionParentItem::addChild(AbstractTreeItem *child) {
26 AbstractParentItem::addChild(child);
27 }
28}
Base class for an image item in the tree.
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