Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 426974c6

Von Christian Ehringfeld vor etwa 9 Jahren hinzugefügt

  • ID 426974c6030a4b348d33f6481bf920a69d9f449a
  • Vorgänger a604a5a2
  • Nachfolger caea9141

...

Unterschiede anzeigen:

src/tableschema.cpp
#include "tableschema.h"
using namespace CuteEntityManager;
TableSchema::TableSchema()
{
TableSchema::TableSchema() {
}
TableSchema::~TableSchema()
{
TableSchema::~TableSchema() {
}
const ColumnSchema TableSchema::getColumn(QString name) const {
}
const QList<QString> TableSchema::getColumnNames() {
}
QString TableSchema::getSchemaName() const {
return schemaName;
}
void TableSchema::setSchemaName(const QString &value) {
schemaName = value;
}
QString TableSchema::getName() const {
return name;
}
void TableSchema::setName(const QString &value) {
name = value;
}
QString TableSchema::getFullName() const {
return fullName;
}
void TableSchema::setFullName(const QString &value) {
fullName = value;
}
QList<QString> TableSchema::getPrimaryKeys() const {
return primaryKeys;
}
void TableSchema::setPrimaryKeys(const QList<QString> &value) {
primaryKeys = value;
}
QString TableSchema::getSequenceName() const {
return sequenceName;
}
void TableSchema::setSequenceName(const QString &value) {
sequenceName = value;
}
QHash<QString, QString> TableSchema::getForeignKeys() const {
return foreignKeys;
}
void TableSchema::setForeignKeys(const QHash<QString, QString> &value) {
foreignKeys = value;
}
QList<ColumnSchema> TableSchema::getColumns() const {
return columns;
}
void TableSchema::setColumns(const QList<ColumnSchema> &value) {
columns = value;
}

Auch abrufbar als: Unified diff