dbstat.h 530 B

1234567891011121314151617181920212223
  1. #ifndef DBSTAT_H
  2. #define DBSTAT_H
  3. #include <QCoreApplication>
  4. /*!
  5. * \brief The dbStat class provides functionality for retreiving various statistics
  6. * from the database. In general, most values are provided as either QString or
  7. * QVector<QString>.
  8. *
  9. */
  10. class dbStat
  11. {
  12. public:
  13. dbStat();
  14. static QString retreiveTotalTime();
  15. static QString retreiveTotalTimeThisCalendarYear();
  16. static QString retreiveTotalTimeRollingYear();
  17. static QVector<QString> retreiveCurrencyTakeoffLanding();
  18. };
  19. #endif // DBSTAT_H