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
LineFilter.h
1#ifndef LineFilter_H
2#define LineFilter_H
3
9
10/* SPDX-License-Identifier: CC0-1.0 */
11
12#include "AbstractNumberFilter.h"
13
14class QString;
15
16namespace Isis {
17 class ControlMeasure;
18 class ControlNet;
19 class ControlPoint;
20
38 class LineFilter : public AbstractNumberFilter {
39 Q_OBJECT
40
41 public:
42 LineFilter(AbstractFilter::FilterEffectivenessFlag flag,
43 int minimumForSuccess = -1);
44 LineFilter(const LineFilter &other);
45 virtual ~LineFilter();
46
47 bool evaluate(const QPair<QString, ControlNet *> *) const;
48 bool evaluate(const ControlPoint *) const;
49 bool evaluate(const ControlMeasure *) const;
50
51 AbstractFilter *clone() const;
52
53 QString getImageDescription() const;
54 QString getPointDescription() const;
55 QString getMeasureDescription() const;
56 };
57}
58
59#endif
Base class for control net filters.
a control measurement
a control network
Definition ControlNet.h:257
A single control point.
This is free and unencumbered software released into the public domain.
Definition Apollo.h:16