Files
CMake/Tests/QtAutogen/ManySources/item.h.in
T
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
159 B
C

#ifndef ITEM_@III@HPP
#define ITEM_@III@HPP
#include <QObject>
class Item_@III@ : public QObject
{
Q_OBJECT
public:
Q_SLOT
void TheSlot();
};
#endif