|
Isis 3.0 Developer's Reference (API) |
Home |
00001 #ifndef MoravecOperator_h 00002 #define MoravecOperator_h 00003 00004 #include "InterestOperator.h" 00005 00006 namespace Isis { 00007 class Pvl; 00008 class Chip; 00009 00040 class MoravecOperator : public InterestOperator { 00041 public: 00047 MoravecOperator(Pvl &pPvl) : InterestOperator(pPvl) {}; 00049 virtual ~MoravecOperator() {}; 00050 00051 protected: 00052 virtual double Interest(Chip &chip); 00053 virtual int Padding(); 00054 }; 00055 }; 00056 00057 #endif