X-Git-Url: https://www.flypig.org.uk/git/?p=harbour-pedalo.git;a=blobdiff_plain;f=src%2Fharbour-pedalo.cpp;h=90df54edc25682f04c4d883f2be3fba21a50b853;hp=35fc77f6fda0c0c5199853f3b1b4f603fcada5b2;hb=refs%2Fheads%2Fmaster;hpb=dc14479d561196e19417c4ecf78e847ec4b43b7c diff --git a/src/harbour-pedalo.cpp b/src/harbour-pedalo.cpp index 35fc77f..90df54e 100644 --- a/src/harbour-pedalo.cpp +++ b/src/harbour-pedalo.cpp @@ -13,7 +13,11 @@ #include "imageprovider.h" #include "graph.h" #include "statsweekdayave.h" +#include "statshourjourneys.h" #include "statsweekdaycongestion.h" +#include "statshourcongestion.h" +#include "statsyearjourneys.h" +#include "statsyearduration.h" #include "harbour-pedalo.h" @@ -48,12 +52,24 @@ int main(int argc, char *argv[]) StatsModel statsmodel; + StatsYearDuration statsyearduration(&journeys); + statsmodel.addStats(statsyearduration); + + StatsYearJourneys statsyearjourneys(&journeys); + statsmodel.addStats(statsyearjourneys); + StatsWeekdayAve statsweekdayave(&journeys); statsmodel.addStats(statsweekdayave); + StatsHourJourneys statshourjourneys(&journeys); + statsmodel.addStats(statshourjourneys); + StatsWeekdayCongestion statsweekdaycongestion(&journeys); statsmodel.addStats(statsweekdaycongestion); + StatsHourCongestion statshourcongestion(&journeys); + statsmodel.addStats(statshourcongestion); + QFile file; file.setFileName(Settings::getConfigDir() + "/journeys.csv"); journeys.importFromFile(file);