openModeller  Version 1.4.0
Normalizable.hh
Go to the documentation of this file.
00001 
00030 #ifndef _NORMALIZABLE_HH
00031 #define _NORMALIZABLE_HH
00032 
00033 #include <openmodeller/Sample.hh>
00034 #include <openmodeller/Normalizer.hh>
00035 
00036 class Normalizable {
00037 
00038 public:
00039 
00040   virtual ~Normalizable(){};
00041 
00042   virtual void getMinMax( Sample * min, Sample * max ) const = 0;
00043 
00044   virtual void normalize( Normalizer * normalizerPtr ) = 0;
00045 
00046 };
00047 
00048 #endif