1234567891011121314151617181920212223242526 |
- #ifndef DBSTAT_H
- #define DBSTAT_H
- #include <QCoreApplication>
- class dbStat
- {
- public:
- static QString retreiveTotalTime();
- static QString retreiveTotalTimeThisCalendarYear();
- static QString retreiveTotalTimeRollingYear();
- static QVector<QString> retreiveCurrencyTakeoffLanding();
- };
- #endif
|