#ifndef OLDNORMALIZEOBJECT_H #define OLDNORMALIZEOBJECT_H #include struct Struct; class Class; template class Template; // An object with old moc output that incorrectly normalizes 'T const &' in the function // signatures class OldNormalizeObject : public QObject { /* tmake ignore Q_OBJECT */ Q_OBJECT signals: void typeRefSignal(Template &ref); void constTypeRefSignal(const Template &ref); void typeConstRefSignal(Template const &ref); public slots: void typeRefSlot(Template &) {} void constTypeRefSlot(const Template &) {} void typeConstRefSlot(Template const &) {} }; #endif // OLDNORMALIZEOBJECT_H