Isis 3 Programmer Reference
InterestOperatorFactory.h
1 #ifndef InterestOperatorFactory_h
2 #define InterestOperatorFactory_h
3 
10 /* SPDX-License-Identifier: CC0-1.0 */
11 
12 namespace Isis {
13  class Pvl;
14  class InterestOperator;
15 
29  public:
30  static InterestOperator *Create(Pvl &pPvl);
31 
32  private:
38 
41  };
42 };
43 
44 #endif
Isis::Pvl
Container for cube-like labels.
Definition: Pvl.h:119
Isis::InterestOperatorFactory::InterestOperatorFactory
InterestOperatorFactory()
Constructor (its private so you can't use it).
Definition: InterestOperatorFactory.h:37
Isis::InterestOperatorFactory::~InterestOperatorFactory
~InterestOperatorFactory()
Destroys the InterestOperatorFactory.
Definition: InterestOperatorFactory.h:40
Isis::InterestOperatorFactory
This class is used to create InterestOperator objects.
Definition: InterestOperatorFactory.h:28
Isis::InterestOperatorFactory::Create
static InterestOperator * Create(Pvl &pPvl)
Create an InterestOperator object using a PVL specification.
Definition: InterestOperatorFactory.cpp:38
Isis
This is free and unencumbered software released into the public domain.
Definition: Apollo.h:16
Isis::InterestOperator
Interest Operator class.
Definition: InterestOperator.h:109