Revision 1b0c0386
Von Christian Ehringfeld vor mehr als 10 Jahren hinzugefügt
| src/entity.h | ||
|---|---|---|
|
#define ENTITY_H
|
||
|
#include <QtGlobal>
|
||
|
#include <QMap>
|
||
|
#include <QDebug>
|
||
|
#include <QObject>
|
||
|
#include <QMetaProperty>
|
||
|
#include "relation.h"
|
||
| src/validators/datevalidator.cpp | ||
|---|---|---|
|
#include "datevalidator.h"
|
||
|
#include <QDate>
|
||
|
#include <QLocale>
|
||
|
#include <QDebug>
|
||
|
using namespace CuteEntityManager;
|
||
|
DateValidator::DateValidator() : Validator() {
|
||
|
}
|
||
| src/validators/validator.cpp | ||
|---|---|---|
|
#include "validator.h"
|
||
|
#include "validatorfactory.h"
|
||
|
#include <QDebug>
|
||
|
using namespace CuteEntityManager;
|
||
|
Validator::Validator() : QObject() {
|
||
|
ValidatorFactory::registerClasses();
|
||
| src/validators/validatorfactory.cpp | ||
|---|---|---|
|
#include "uniquevalidator.h"
|
||
|
#include "patternvalidator.h"
|
||
|
#include "lengthvalidator.h"
|
||
|
#include <QDebug>
|
||
|
using namespace CuteEntityManager;
|
||
|
|
||
|
ValidatorFactory::ValidatorFactory() {
|
||
Auch abrufbar als: Unified diff
removed unneeded qdebug includes