private_slot.cpp 223 B

123456789101112131415161718192021
  1. #include "private_slot.h"
  2. class PrivateSlotPrivate
  3. {
  4. public:
  5. void privateSlot()
  6. {
  7. }
  8. };
  9. PrivateSlot::PrivateSlot(QObject *parent)
  10. : QObject(parent),
  11. d(new PrivateSlotPrivate)
  12. {
  13. }
  14. #include "private_slot.moc"