Added new graphs
[harbour-pedalo.git] / src / harbour-pedalo.cpp
index 35fc77f..f19a8fc 100644 (file)
@@ -13,7 +13,9 @@
 #include "imageprovider.h"
 #include "graph.h"
 #include "statsweekdayave.h"
+#include "statshourjourneys.h"
 #include "statsweekdaycongestion.h"
+#include "statshourcongestion.h"
 
 #include "harbour-pedalo.h"
 
@@ -51,9 +53,15 @@ int main(int argc, char *argv[])
     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);