#ifndef DBSTAT_H #define DBSTAT_H #include /*! * \brief The dbStat class provides functionality for retreiving various statistics * from the database. In general, most values are provided as either QString or * QVector. * */ class dbStat { public: static QString retreiveTotalTime(); static QString retreiveTotalTimeThisCalendarYear(); static QString retreiveTotalTimeRollingYear(); static QVector retreiveCurrencyTakeoffLanding(); }; #endif // DBSTAT_H