]> ToastFreeware Gitweb - toast/confclerk.git/blob - src/mvc/activity.h
static allocation instead of dynamic added when creating activity map
[toast/confclerk.git] / src / mvc / activity.h
1 /*
2  * activity.h
3  *
4  *  Created on: Dec 27, 2009
5  *      Author: Pavol Korinek
6  */
7
8 #ifndef ACTIVITY_H_
9 #define ACTIVITY_H_
10
11 #include <ormrecord.h>
12
13 class Activity : public OrmRecord<Activity>
14 {
15 public:
16     static const QSqlRecord sColumns;
17     static QString const sTableName;
18     static const int sTableColCount;
19 public:
20     static QMap<int, Activity> mIdToActivity;
21 public:
22     static QList<Activity> getAll();
23     int id() const { return value("id").toInt(); }
24     void setId(int id) { setValue("id", id); }
25     QString name() const { return value("name").toString(); }
26     void setName(const QString & type) { setValue("name", type); }
27 public:
28     static void updateActivityMap();
29     static QString getActivityName(int id);
30 };
31
32 #endif /* ACTIVITY_H_ */