00001 #ifndef HISTOGRAM_HPP 00002 #define HISTOGRAM_HPP 00003 00004 #include <float.h> 00005 00006 class Histogram { 00007 private: 00008 int range; 00009 unsigned long *count; 00010 float min; 00011 float max; 00012 public: 00013 Histogram(int *data); 00014 virtual ~Histogram(void); 00015 }; 00016 00017 #endif