dbstat.h 520 B

1234567891011121314151617181920212223242526
  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. static QString retreiveTotalTime();
  14. static QString retreiveTotalTimeThisCalendarYear();
  15. static QString retreiveTotalTimeRollingYear();
  16. static QVector<QString> retreiveCurrencyTakeoffLanding();
  17. };
  18. #endif // DBSTAT_H