2012-02-18 12:40:36 +02:00
|
|
|
|
|
|
|
#include "private_slot.h"
|
|
|
|
|
|
|
|
class PrivateSlotPrivate
|
|
|
|
{
|
|
|
|
public:
|
2016-07-09 11:21:54 +02:00
|
|
|
void privateSlot() {}
|
2012-02-18 12:40:36 +02:00
|
|
|
};
|
|
|
|
|
2016-07-09 11:21:54 +02:00
|
|
|
PrivateSlot::PrivateSlot(QObject* parent)
|
|
|
|
: QObject(parent)
|
|
|
|
, d(new PrivateSlotPrivate)
|
2012-02-18 12:40:36 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
#include "private_slot.moc"
|