Nicht aufgelöstes externes Symbol "public: virtuelle Struktur QMetaObject const * __thiscall Parent

Ich habe eine Klasse von QObject geerbt: class Parent: public QObject { Q_OBJECT QObject* cl; public: Parent(QObject *parent=0):QObject(parent) { cl = NULL; } QObject* getCl() const { return cl; } void setCl(QObject *obj) { cl = obj; } }; Aber wenn ich schreibe: Parent...