Support multiple graphs
[harbour-pedalo.git] / src / stats.cpp
diff --git a/src/stats.cpp b/src/stats.cpp
new file mode 100644 (file)
index 0000000..c858ccb
--- /dev/null
@@ -0,0 +1,23 @@
+#include "stats.h"
+
+Stats::Stats()
+{
+
+}
+
+QStringList Stats::getLabels() const {
+    return labels;
+}
+
+QList<float> Stats::getValues() const {
+    return values;
+}
+
+void Stats::setLabels(QStringList &value) {
+    labels = value;
+}
+
+void Stats::setValues(QList<float> &value) {
+    values = value;
+}
+