summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/UicOnly/UicOnly.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutogen/UicOnly/UicOnly.hpp')
-rw-r--r--Tests/QtAutogen/UicOnly/UicOnly.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/Tests/QtAutogen/UicOnly/UicOnly.hpp b/Tests/QtAutogen/UicOnly/UicOnly.hpp
new file mode 100644
index 000000000..24e1e0b94
--- /dev/null
+++ b/Tests/QtAutogen/UicOnly/UicOnly.hpp
@@ -0,0 +1,15 @@
+#include "ui_uiA.h"
+#include "ui_uiB.h"
+// AUTOUIC includes on the first two lines of a header file
+#include <QObject>
+
+class UicOnly : public QObject
+{
+public:
+ UicOnly();
+ ~UicOnly();
+
+private:
+ Ui::UiA* uiA;
+ Ui::UiB* uiB;
+};