Herunterladen als
root/samples/simple/address.cpp @ 59e17af2
59e17af2 | SebastianDiel | #include "address.h"
|
|
#include "pupil.h"
|
|||
Address::Address(QString label, QString street, QString postcode,
|
|||
QString city) {
|
|||
this->label = label;
|
|||
this->street = street;
|
|||
this->postcode = postcode;
|
|||
this->city = city;
|
|||
}
|
|||
QString Address::getLabel() const {
|
|||
return label;
|
|||
}
|
|||
void Address::setLabel(const QString &value) {
|
|||
label = value;
|
|||
}
|
|||
QString Address::getStreet() const {
|
|||
return street;
|
|||
}
|
|||
void Address::setStreet(const QString &value) {
|
|||
street = value;
|
|||
}
|
|||
QString Address::getPostcode() const {
|
|||
return postcode;
|
|||
}
|
|||
void Address::setPostcode(const QString &value) {
|
|||
postcode = value;
|
|||
}
|
|||
QString Address::getCity() const {
|
|||
return city;
|
|||
}
|
|||
void Address::setCity(const QString &value) {
|
|||
city = value;
|
|||
}
|
|||
QList<QSharedPointer<Person> > Address::getPersons() const {
|
|||
return persons;
|
|||
}
|
|||
void Address::setPersons(const QList<QSharedPointer<Person> > &value) {
|
|||
persons = value;
|
|||
}
|
|||
const QHash<QString, CuteEntityManager::Relation> Address::getRelations()
|
|||
const {
|
|||
auto hash = Entity::getRelations();
|
|||
hash.insert("persons", CuteEntityManager::Relation("persons",
|
|||
RelationType::MANY_TO_MANY,
|
|||
QString("addresses")));
|
|||
return hash;
|
|||
}
|
|||
QList<QSharedPointer<Pupil> > Address::getPupils() const {
|
|||
return pupils;
|
|||
}
|
|||
void Address::setPupils(const QList<QSharedPointer<Pupil> > &value) {
|
|||
pupils = value;
|
|||
}
|
|||