diff options
Diffstat (limited to 'Tests/QtAutogen/complex/private_slot.cpp')
-rw-r--r-- | Tests/QtAutogen/complex/private_slot.cpp | 16 |
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 0000000..ab1682a --- /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" |