summaryrefslogtreecommitdiff
path: root/Tests/QtAutogen/Complex/private_slot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/QtAutogen/Complex/private_slot.cpp')
-rw-r--r--Tests/QtAutogen/Complex/private_slot.cpp16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/QtAutogen/Complex/private_slot.cpp b/Tests/QtAutogen/Complex/private_slot.cpp
new file mode 100644
index 000000000..ab1682a25
--- /dev/null
+++ b/Tests/QtAutogen/Complex/private_slot.cpp
@@ -0,0 +1,16 @@
+
+#include "private_slot.h"
+
+class PrivateSlotPrivate
+{
+public:
+ void privateSlot() {}
+};
+
+PrivateSlot::PrivateSlot(QObject* parent)
+ : QObject(parent)
+ , d(new PrivateSlotPrivate)
+{
+}
+
+#include "private_slot.moc"