mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-20 05:30:19 -06:00
The RunCMake.AutogenQtX tests occasionally time out so separate `RunCMake.AutogenQtX` tests. Example: https://open.cdash.org/tests/1583599782
15 lines
152 B
C++
15 lines
152 B
C++
#ifndef EXAMPLE_UI_H
|
|
#define EXAMPLE_UI_H
|
|
|
|
#include <QObject>
|
|
|
|
#include "ui_uiA.h"
|
|
|
|
class Example : public QObject
|
|
{
|
|
Q_OBJECT
|
|
Example();
|
|
};
|
|
|
|
#endif
|