| Report problems to ATLAS LXR Team (with time and IP address indicated) |
|
[ source navigation ] [ diff markup ] [ identifier search ] [ general search ] |
||||
|
||||||
| Links to LXR source navigation pages for stable releases | [ 12.*.* ] [ 13.*.* ] [ 14.*.* ] [ 15.*.* ] | |||||
001 #ifndef SCALE_H 002 #define SCALE_H 003 004 class Scale 005 { 006 public: 007 Scale(void); 008 virtual ~Scale(void) {}; 009 010 void addValue(double value); 011 void setMinimum(double min); 012 void setMaximum(double max); 013 double minimum() const; 014 double maximum() const; 015 016 void setAutoScale(bool bState); 017 void clear(); 018 019 private: 020 021 bool m_bAutoScale; 022 double m_valueMin; 023 double m_valueMax; 024 025 double m_manualMin; 026 double m_manualMax; 027 028 }; 029 030 #endif 031
| [ source navigation ] | [ diff markup ] | [ identifier search ] | [ general search ] |
| Due to the LXR bug, the updates fail sometimes to remove references to deleted files. The Saturday's full rebuilds fix these problems | |
| This page was automatically generated by the LXR engine. |
|