Files
CMake/Tests/QtAutogen/ManySources/object.h.in
Sebastian Holtermann 58f04b6ecf Autogen: Add ManySources test
The QtAutogen/ManySources test generates a number of source, header, .ui and
.qrc files that get AUTOMOC, AUTOUIC and AUTORCC processed.  This stresses the
concurrency framework in `cmQtAutoMocUic` and should reveal any issues
with that.
2019-04-15 16:07:14 +02:00

16 lines
166 B
C

#ifndef OBJECT_@III@H
#define OBJECT_@III@H
#include <QObject>
class Object_@III@ : public QObject
{
Q_OBJECT
public:
Q_SLOT
void ObjectSlot(){};
};
#endif