USGS

Isis 3.0 Object Programmers' Reference

Home

NoOperator.h
Go to the documentation of this file.
1 #ifndef NoOperator_h
2 #define NoOperator_h
3 
26 #include "InterestOperator.h"
27 
28 namespace Isis {
29  class Pvl;
30  class Chip;
31 
46  class NoOperator : public InterestOperator {
47  public:
48  NoOperator(Pvl &pvl) : InterestOperator(pvl) {
49  p_worstInterest = 0.0;
50  };
51  virtual ~NoOperator() {};
52 
53  protected:
54  virtual double Interest(Chip &chip);
55  };
56 };
57 
58 #endif