28 Person(
const QString &name,
const QString &affiliation,
const QString &email);
61 QString m_Affiliation;
The Person class represents a person with a name, affiliation, and email.
Definition person.h:20
QString getAffiliation() const
Returns the affiliation of the person.
Definition person.cpp:23
~Person()=default
Default destructor for the Person class.
QString toString() const
Returns a string representation of the person.
Definition person.cpp:33
QString getEmail() const
Returns the email address of the person.
Definition person.cpp:28
QString getName() const
Returns the name of the person.
Definition person.cpp:18
Person(const QString &name, const QString &affiliation, const QString &email)
Constructs a Person object with the specified name, affiliation, and email.
Definition person.cpp:12