2011-11-22 22:26:42 +01:00
|
|
|
|
|
|
|
#include "private_slot.h"
|
|
|
|
|
|
|
|
class PrivateSlotPrivate
|
|
|
|
{
|
|
|
|
public:
|
2016-05-16 10:34:04 -04:00
|
|
|
void privateSlot() {}
|
2011-11-22 22:26:42 +01:00
|
|
|
};
|
|
|
|
|
2016-05-16 10:34:04 -04:00
|
|
|
PrivateSlot::PrivateSlot(QObject* parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, d(new PrivateSlotPrivate)
|
2011-11-22 22:26:42 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "private_slot.moc"
|