mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-27 00:49:52 -06:00
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
166 B
C
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
|