[Kst] kdeextragear-2/kst/kst
George Staikos
staikos at kde.org
Wed Mar 30 23:45:03 CEST 2005
CVS commit by staikos:
accessors needed
M +31 -0 kstvcurve.cpp 1.65
M +6 -2 kstvcurve.h 1.31
--- kdeextragear-2/kst/kst/kstvcurve.h #1.30:1.31
@@ -88,6 +88,10 @@ class KstVCurve: public KstBaseCurve {
virtual bool uses(KstObjectPtr p) const;
- KstVectorPtr xVector() const { return VX; }
- KstVectorPtr yVector() const { return VY; }
+ KstVectorPtr xVector() const;
+ KstVectorPtr yVector() const;
+ KstVectorPtr xErrorVector() const;
+ KstVectorPtr yErrorVector() const;
+ KstVectorPtr xMinusErrorVector() const;
+ KstVectorPtr yMinusErrorVector() const;
private:
--- kdeextragear-2/kst/kst/kstvcurve.cpp #1.64:1.65
@@ -492,3 +492,34 @@ bool KstVCurve::uses(KstObjectPtr p) con
}
+
+KstVectorPtr KstVCurve::xVector() const {
+ return VX;
+}
+
+
+KstVectorPtr KstVCurve::yVector() const {
+ return VY;
+}
+
+
+KstVectorPtr KstVCurve::xErrorVector() const {
+ return EX;
+}
+
+
+KstVectorPtr KstVCurve::yErrorVector() const {
+ return EY;
+}
+
+
+KstVectorPtr KstVCurve::xMinusErrorVector() const {
+ return EXMinus;
+}
+
+
+KstVectorPtr KstVCurve::yMinusErrorVector() const {
+ return EYMinus;
+}
+
+
// vim: ts=2 sw=2 et
More information about the Kst
mailing list