[Kst] branches/work/kst/kst1kde4/kst/src/plugins
Zongyi Zhang
freebody.kst at gmail.com
Thu Feb 25 00:59:51 CET 2010
SVN commit 1095760 by zhang:
continue kst1kde4
A effective_bandwidth/CMakeLists.txt
M +3 -0 effective_bandwidth/effective_bandwidth.cpp
M +1 -0 effective_bandwidth/effective_bandwidth.h
A interpolations/CMakeLists.txt
A interpolations/akima/CMakeLists.txt
M +3 -0 interpolations/akima/akima.cpp
M +1 -0 interpolations/akima/akima.h
A interpolations/akima_periodic/CMakeLists.txt
M +3 -0 interpolations/akima_periodic/akima_periodic.cpp
M +1 -0 interpolations/akima_periodic/akima_periodic.h
A interpolations/cspline/CMakeLists.txt
M +3 -0 interpolations/cspline/cspline.cpp
M +1 -0 interpolations/cspline/cspline.h
A interpolations/cspline_periodic/CMakeLists.txt
M +3 -0 interpolations/cspline_periodic/cspline_periodic.cpp
M +1 -0 interpolations/cspline_periodic/cspline_periodic.h
A interpolations/linear/CMakeLists.txt
M +3 -0 interpolations/linear/linear.cpp
M +1 -0 interpolations/linear/linear.h
A interpolations/polynomial/CMakeLists.txt
M +3 -0 interpolations/polynomial/polynomial.cpp
M +1 -0 interpolations/polynomial/polynomial.h
--- branches/work/kst/kst1kde4/kst/src/plugins/effective_bandwidth/effective_bandwidth.cpp #1095759:1095760
@@ -40,6 +40,9 @@
: KstBasicPlugin() {
}
+EffBandwidth::EffBandwidth( QObject */*parent*/, const QStringList &/*args*/ )
+ : KstBasicPlugin() {
+}
EffBandwidth::~EffBandwidth() {
}
--- branches/work/kst/kst1kde4/kst/src/plugins/effective_bandwidth/effective_bandwidth.h #1095759:1095760
@@ -23,6 +23,7 @@
Q_OBJECT
public:
EffBandwidth(QObject *parent, const char *name, const QStringList &args);
+ EffBandwidth(QObject *parent, const QStringList &args);
virtual ~EffBandwidth();
virtual bool algorithm();
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/akima/akima.cpp #1095759:1095760
@@ -35,6 +35,9 @@
: KstBasicPlugin() {
}
+Akima::Akima( QObject */*parent*/, const QStringList &/*args*/ )
+ : KstBasicPlugin() {
+}
Akima::~Akima() {
}
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/akima/akima.h #1095759:1095760
@@ -23,6 +23,7 @@
Q_OBJECT
public:
Akima(QObject *parent, const char *name, const QStringList &args);
+ Akima(QObject *parent, const QStringList &args);
virtual ~Akima();
virtual bool algorithm();
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/akima_periodic/akima_periodic.cpp #1095759:1095760
@@ -35,6 +35,9 @@
: KstBasicPlugin() {
}
+AkimaPeriodic::AkimaPeriodic( QObject */*parent*/, const QStringList &/*args*/ )
+ : KstBasicPlugin() {
+}
AkimaPeriodic::~AkimaPeriodic() {
}
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/akima_periodic/akima_periodic.h #1095759:1095760
@@ -23,6 +23,7 @@
Q_OBJECT
public:
AkimaPeriodic(QObject *parent, const char *name, const QStringList &args);
+ AkimaPeriodic(QObject *parent, const QStringList &args);
virtual ~AkimaPeriodic();
virtual bool algorithm();
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/cspline/cspline.cpp #1095759:1095760
@@ -35,6 +35,9 @@
: KstBasicPlugin() {
}
+CSpline::CSpline( QObject */*parent*/, const QStringList &/*args*/ )
+ : KstBasicPlugin() {
+}
CSpline::~CSpline() {
}
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/cspline/cspline.h #1095759:1095760
@@ -23,6 +23,7 @@
Q_OBJECT
public:
CSpline(QObject *parent, const char *name, const QStringList &args);
+ CSpline(QObject *parent, const QStringList &args);
virtual ~CSpline();
virtual bool algorithm();
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/cspline_periodic/cspline_periodic.cpp #1095759:1095760
@@ -35,6 +35,9 @@
: KstBasicPlugin() {
}
+CSplinePeriodic::CSplinePeriodic( QObject */*parent*/, const QStringList &/*args*/ )
+ : KstBasicPlugin() {
+}
CSplinePeriodic::~CSplinePeriodic() {
}
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/cspline_periodic/cspline_periodic.h #1095759:1095760
@@ -23,6 +23,7 @@
Q_OBJECT
public:
CSplinePeriodic(QObject *parent, const char *name, const QStringList &args);
+ CSplinePeriodic(QObject *parent, const QStringList &args);
virtual ~CSplinePeriodic();
virtual bool algorithm();
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/linear/linear.cpp #1095759:1095760
@@ -35,6 +35,9 @@
: KstBasicPlugin() {
}
+Linear::Linear( QObject */*parent*/, const QStringList &/*args*/ )
+ : KstBasicPlugin() {
+}
Linear::~Linear() {
}
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/linear/linear.h #1095759:1095760
@@ -23,6 +23,7 @@
Q_OBJECT
public:
Linear(QObject *parent, const char *name, const QStringList &args);
+ Linear(QObject *parent, const QStringList &args);
virtual ~Linear();
virtual bool algorithm();
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/polynomial/polynomial.cpp #1095759:1095760
@@ -35,6 +35,9 @@
: KstBasicPlugin() {
}
+Polynomial::Polynomial( QObject */*parent*/, const QStringList &/*args*/ )
+ : KstBasicPlugin() {
+}
Polynomial::~Polynomial() {
}
--- branches/work/kst/kst1kde4/kst/src/plugins/interpolations/polynomial/polynomial.h #1095759:1095760
@@ -23,6 +23,7 @@
Q_OBJECT
public:
Polynomial(QObject *parent, const char *name, const QStringList &args);
+ Polynomial(QObject *parent, const QStringList &args);
virtual ~Polynomial();
virtual bool algorithm();
More information about the Kst
mailing list