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