mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-28 01:49:23 -05:00
58f04b6ecf
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.
16 lines
159 B
C
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
|