X-Git-Url: https://www.flypig.org.uk/git/?p=harbour-pedalo.git;a=blobdiff_plain;f=src%2Fstats.cpp;fp=src%2Fstats.cpp;h=c858ccb563b1939f1f38c7dff3fef7e639f1d8b1;hp=0000000000000000000000000000000000000000;hb=76b5f460f9a5052571d730918b2ee778753f4c59;hpb=41ee443df2b12e7a4373be580006f57cc5fd768a diff --git a/src/stats.cpp b/src/stats.cpp new file mode 100644 index 0000000..c858ccb --- /dev/null +++ b/src/stats.cpp @@ -0,0 +1,23 @@ +#include "stats.h" + +Stats::Stats() +{ + +} + +QStringList Stats::getLabels() const { + return labels; +} + +QList Stats::getValues() const { + return values; +} + +void Stats::setLabels(QStringList &value) { + labels = value; +} + +void Stats::setValues(QList &value) { + values = value; +} +