]> ToastFreeware Gitweb - toast/confclerk.git/blobdiff - src/mvc/event.h
event-dialog - displayed persons/presenters names
[toast/confclerk.git] / src / mvc / event.h
index 781345de2479a1eeffa4e05567da47f4ad9a1398..97d97a773fb89853300d54f6ce3818377bd57919 100644 (file)
@@ -48,6 +48,7 @@ public:
     QString description() const { return value("description").toString(); }
     // records from other tables associated with 'id'
     QString room() const;
+    QStringList persons() const;
 
     // Table 1
     void setId(int id) { setValue("id", id); }
@@ -67,6 +68,7 @@ public:
     void setDescription(const QString& description) { setValue("description", description); }
     // records from other tables associated with 'id'
     void setRoom(const QString& room);
+    void setPersons(const QStringList &persons);
 
 friend class EventTest;
 };