USGS

Isis 3.0 Object Programmers' Reference

Home

ForstnerOperator.h
Go to the documentation of this file.
1 #ifndef ForstnerOperator_h
2 #define ForstnerOperator_h
3 
26 #include "InterestOperator.h"
27 
28 namespace Isis {
29  class Pvl;
30  class Chip;
31 
52  public:
53  ForstnerOperator(Pvl &pvl) : InterestOperator(pvl) {};
54  virtual ~ForstnerOperator() {};
55 
56  protected:
57  virtual double Interest(Chip &chip);
58  };
59 };
60 
61 #endif