00001 #ifndef HISTOGRAMPOINT_H 00002 #define HISTOGRAMPOINT_H 00003 00004 #define HISTOGRAMMPOINTWIDTH 5 00005 00006 class HistogramPoint 00007 { 00008 public: 00009 QColor color; 00010 QPoint point; 00011 00012 bool operator<(const HistogramPoint& point) {return this->point.x() < point.point.x();}; 00013 }; 00014 00015 #endif