00001 //LabPlot : PointL.h 00002 00003 #ifndef POINTL_H 00004 #define POINTL_H 00005 00006 #include <qstring.h> 00007 00008 class PointL 00009 { 00010 public: 00011 PointL(double a=0, QString s=0); 00012 void setPointL(double, QString); 00013 double V() { return v; } 00014 void setV(double a) { v=a; } 00015 QString L() { return l; } 00016 void setL(QString a) { l=a; } 00017 void setMasked(bool m ) { masked = m; } 00018 bool Masked() { return masked; } 00019 protected: 00020 double v; 00021 QString l; 00022 bool masked; 00023 }; 00024 00025 #endif //POINTL_H