Main Page | Namespace List | Class Hierarchy | Class List | File List | Class Members | File Members

LRange.h

Go to the documentation of this file.
00001 // LabPlot : LRange.h
00002 
00003 #ifndef LRANGE_H
00004 #define LRANGE_H
00005 
00006 class LRange
00007 {
00008 public:
00009         LRange(double min=0, double max=0);
00010         double Diff() { return max-min; }
00011         double rMin() { return min; }
00012         double rMax() { return max; }
00013         void setMin(double m) { min=m; }
00014         void setMax(double m) { max=m; }
00015         void setRange(double rmin=0, double rmax=1) {min=rmin; max=rmax; }
00016         
00017 private:
00018         double min,max;
00019 };
00020 
00021 #endif //LRANGE_H

Generated on Fri Aug 19 21:34:44 2005 for LabPlot by doxygen 1.3.6