File failed to load: https://isis.astrogeology.usgs.gov/9.0.0/Object/assets/jax/output/NativeMML/config.js
Isis 3 Programmer Reference
MeasureLeafItem.h
1#ifndef MeasureLeafItem_H
2#define MeasureLeafItem_H
3
9
10/* SPDX-License-Identifier: CC0-1.0 */
11
12
13#include "AbstractMeasureItem.h"
14#include "AbstractLeafItem.h"
15
16
17namespace Isis {
18 class ControlMeasure;
19
32 class MeasureLeafItem : public AbstractMeasureItem, public AbstractLeafItem {
33 public:
34 MeasureLeafItem(ControlMeasure *cm, int avgCharWidth,
35 AbstractTreeItem *parent = 0);
36 virtual ~MeasureLeafItem();
37
38
39 private: // Disallow copying of this class
40 MeasureLeafItem(const MeasureLeafItem &other);
41 const MeasureLeafItem &operator=(const MeasureLeafItem &other);
42 };
43}
44
45#endif
Base class for an item in the tree.
a control measurement
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16