Herunterladen als
root/src/entity.cpp @ 1e213c09
81c23b56 | Christian Ehringfeld | /*
|
|
4d58ef6a | Christian Ehringfeld | * Copyright (C) 2015 Christian Ehringfeld <c.ehringfeld@t-online.de>
|
|
*
|
|||
* This program is free software; you can redistribute it and/or modify it
|
|||
* under the terms of the GNU Lesser General Public License as published by
|
|||
* the Free Software Foundation.
|
|||
*
|
|||
* This program is distributed in the hope that it will be useful, but
|
|||
* WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
|
|||
* or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|||
* for more details.
|
|||
*
|
|||
* You should have received a copy of the GNU Lesser General Public License
|
|||
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|||
*/
|
|||
81c23b56 | Christian Ehringfeld | ||
#include "entity.h"
|
|||
9cf4747e | Christian Ehringfeld | using namespace CuteEntityManager;
|
|
81c23b56 | Christian Ehringfeld | ||
9d05e414 | Christian Ehringfeld | Entity::Entity(QObject *parent) : QObject(parent) {
|
|
81c23b56 | Christian Ehringfeld | this->id = -1;
|
|
}
|
|||
9d05e414 | Christian Ehringfeld | QString Entity::toString() {
|
|
7e233492 | Christian Ehringfeld | return this->getTablename() + ":" + QString::number(this->id);
|
|
9d05e414 | Christian Ehringfeld | }
|
|
81c23b56 | Christian Ehringfeld | Entity::~Entity() {
|
|
ba800d6d | Christian Ehringfeld | ||
81c23b56 | Christian Ehringfeld | }
|
|
caea9141 | Christian Ehringfeld | QString Entity::getTablename() {
|
|
return QString(this->metaObject()->className());
|
|||
}
|
|||
7e233492 | Christian Ehringfeld | ||
24425325 | Christian Ehringfeld | QHash<QString, Relation> Entity::getRelations() {
|
|
return QHash<QString, Relation>();
|
|||
24c5480c | Christian Ehringfeld | }
|
|
7e233492 | Christian Ehringfeld | QStringList Entity::getTransientAttributes() {
|
|
return QStringList();
|
|||
}
|
|||
24c5480c | Christian Ehringfeld | ||
QStringList Entity::getBLOBColumns() {
|
|||
return QStringList();
|
|||
}
|
|||
QString Entity::getPrimaryKey() {
|
|||
return "id";
|
|||
}
|
|||
813205af | Christian Ehringfeld | ||
f4e3904b | Christian Ehringfeld | QHash<QString, QMetaProperty> Entity::getMetaProperties() const {
|
|
QHash<QString, QMetaProperty> h = QHash<QString, QMetaProperty>();
|
|||
for (int var = 0; var < this->metaObject()->propertyCount(); ++var) {
|
|||
QMetaProperty m = this->metaObject()->property(var);
|
|||
if (m.name() != QString("objectName") && m.isValid()) {
|
|||
h.insert(m.name(), m);
|
|||
}
|
|||
}
|
|||
return h;
|
|||
}
|
|||
const char *Entity::getClassname() const {
|
|||
return this->metaObject()->className();
|
|||
}
|
|||
813205af | Christian Ehringfeld | qint64 Entity::getId() const {
|
|
586bb527 | Christian Ehringfeld | return id;
|
|
}
|
|||
813205af | Christian Ehringfeld | void Entity::setId(const qint64 &value) {
|
|
586bb527 | Christian Ehringfeld | id = value;
|
|
}
|