USGS

Isis 3.0 Object Programmers' Reference

Home

AdaptiveGruen.h

Go to the documentation of this file.
00001 #if !defined(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() { return (true); }
00069 
00070     protected:
00072       virtual std::string AlgorithmName() const {return ("AdaptiveGruen");}
00073 
00074 
00075   };
00076 };
00077 
00078 #endif