00001 //LabPlot : Point.h 00002 00003 #ifndef POINT_H 00004 #define POINT_H 00005 00006 class Point 00007 { 00008 public: 00009 Point(double a=0, double b=0); 00010 void setPoint(double, double); 00011 double X() { return x; } 00012 double Y() { return y; } 00013 void setMasked(bool m ) { masked = m; } 00014 bool Masked() { return masked; } 00015 protected: 00016 double x,y; 00017 bool masked; 00018 }; 00019 00020 #endif //POINT_H