Seafood/Fishes.h
author John Kern <johnk@symbian.org>
Thu, 25 Mar 2010 16:21:13 -0700
changeset 6 e8f500c881af
parent 3 e6d1a78b6db9
child 10 79eeacfd15ff
permissions -rw-r--r--
add content to eco details

#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