author | User@User-PC.domain_not_set.invalid |
Fri, 26 Mar 2010 15:19:41 -0700 | |
changeset 9 | 23f6727b5587 |
parent 3 | e6d1a78b6db9 |
child 10 | 79eeacfd15ff |
permissions | -rw-r--r-- |
#ifndef FISHES_H #define FISHES_H #include <QObject> #include <QStringList> class Fishes : public QObject { Q_OBJECT public: Fishes(QObject *parent=0); enum TCATEGORIES {EPresentBest=0, EPresentOK, EPresentWorst}; const QStringList GetBest(); const QStringList GetOK(); const QStringList GetWorst(); private: void populate(TCATEGORIES cat); QStringList bestFish; QStringList okFish; QStringList worstFish; // QSqlDatabase db; }; #endif // FISHES_H