--- /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