|
Isis 3.0 Developer's Reference (API) |
Home |
00001 #ifndef AdaptiveGruen_h 00002 #define AdaptiveGruen_h 00003 00026 #include "Gruen.h" 00027 00028 namespace Isis { 00029 class Pvl; 00030 00048 class AdaptiveGruen : public Gruen { 00049 public: 00060 AdaptiveGruen(Pvl &pvl) : Gruen(pvl) { } 00061 00063 virtual ~AdaptiveGruen() {} 00064 00068 virtual bool IsAdaptive() { 00069 return (true); 00070 } 00071 00072 protected: 00074 virtual QString AlgorithmName() const { 00075 return ("AdaptiveGruen"); 00076 } 00077 00078 00079 }; 00080 }; 00081 00082 #endif