openModeller  Version 1.5.0
Normalizable.hh
Go to the documentation of this file.
1 
30 #ifndef _NORMALIZABLE_HH
31 #define _NORMALIZABLE_HH
32 
33 #include <openmodeller/Sample.hh>
35 
36 class Normalizable {
37 
38 public:
39 
40  virtual ~Normalizable(){};
41 
42  virtual void getMinMax( Sample * min, Sample * max ) const = 0;
43 
44  virtual void normalize( Normalizer * normalizerPtr ) = 0;
45 
46 };
47 
48 #endif
virtual ~Normalizable()
Definition: Normalizable.hh:40
virtual void getMinMax(Sample *min, Sample *max) const =0
virtual void normalize(Normalizer *normalizerPtr)=0
int min(int v1, int v2)
Definition: rules_base.cpp:56
Definition: Sample.hh:25