Seafood/Fishes.h
changeset 3 e6d1a78b6db9
child 10 79eeacfd15ff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Seafood/Fishes.h	Wed Mar 24 14:05:38 2010 -0700
@@ -0,0 +1,26 @@
+#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