20 #ifndef EABOUTPERSON_H
21 #define EABOUTPERSON_H
48 Q_DECLARE_FLAGS(Categories, Category)
51 EAboutPerson(QString name, QString givenName, Categories categories, QObject *parent = 0);
52 EAboutPerson(QString name, QString givenName, QString email, Categories categories, QObject *parent = 0);
53 void setName(QString name);
55 void setGivenName(QString givenName);
56 QString givenName() const;
57 void setEmail(QString address);
58 QString email() const;
59 void setCategories(Categories categories);
60 Categories categories() const;
63 QString myName, myGivenName, myMail;
69 #endif // EABOUTPERSON_H